blob: 73460debe5380fdab84920506ea6de4e6573357d [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>
15#include <linux/delay.h>
16#include <linux/firmware.h>
Philipp Zabel657eee72013-04-29 16:17:14 -070017#include <linux/genalloc.h>
Javier Martin186b2502012-07-26 05:53:35 -030018#include <linux/interrupt.h>
19#include <linux/io.h>
20#include <linux/irq.h>
Philipp Zabel9082a7c2013-06-21 03:55:31 -030021#include <linux/kfifo.h>
Javier Martin186b2502012-07-26 05:53:35 -030022#include <linux/module.h>
23#include <linux/of_device.h>
24#include <linux/platform_device.h>
25#include <linux/slab.h>
26#include <linux/videodev2.h>
27#include <linux/of.h>
Philipp Zabel657eee72013-04-29 16:17:14 -070028#include <linux/platform_data/coda.h>
Javier Martin186b2502012-07-26 05:53:35 -030029
30#include <media/v4l2-ctrls.h>
31#include <media/v4l2-device.h>
Philipp Zabel918c66f2013-06-27 06:59:01 -030032#include <media/v4l2-event.h>
Javier Martin186b2502012-07-26 05:53:35 -030033#include <media/v4l2-ioctl.h>
34#include <media/v4l2-mem2mem.h>
35#include <media/videobuf2-core.h>
36#include <media/videobuf2-dma-contig.h>
37
38#include "coda.h"
39
40#define CODA_NAME "coda"
41
42#define CODA_MAX_INSTANCES 4
43
44#define CODA_FMO_BUF_SIZE 32
45#define CODADX6_WORK_BUF_SIZE (288 * 1024 + CODA_FMO_BUF_SIZE * 8 * 1024)
Philipp Zabel5677e3b2013-06-21 03:55:30 -030046#define CODA7_WORK_BUF_SIZE (128 * 1024)
47#define CODA7_TEMP_BUF_SIZE (304 * 1024)
Javier Martin186b2502012-07-26 05:53:35 -030048#define CODA_PARA_BUF_SIZE (10 * 1024)
49#define CODA_ISRAM_SIZE (2048 * 2)
Philipp Zabel657eee72013-04-29 16:17:14 -070050#define CODADX6_IRAM_SIZE 0xb000
Philipp Zabel918c66f2013-06-27 06:59:01 -030051#define CODA7_IRAM_SIZE 0x14000
Javier Martin186b2502012-07-26 05:53:35 -030052
Philipp Zabel918c66f2013-06-27 06:59:01 -030053#define CODA7_PS_BUF_SIZE 0x28000
54
55#define CODA_MAX_FRAMEBUFFERS 8
Javier Martin186b2502012-07-26 05:53:35 -030056
Philipp Zabelb96904e2013-05-23 10:42:58 -030057#define MAX_W 8192
58#define MAX_H 8192
59#define CODA_MAX_FRAME_SIZE 0x100000
Javier Martin186b2502012-07-26 05:53:35 -030060#define FMO_SLICE_SAVE_BUF_SIZE (32)
61#define CODA_DEFAULT_GAMMA 4096
62
63#define MIN_W 176
64#define MIN_H 144
Javier Martin186b2502012-07-26 05:53:35 -030065
66#define S_ALIGN 1 /* multiple of 2 */
67#define W_ALIGN 1 /* multiple of 2 */
68#define H_ALIGN 1 /* multiple of 2 */
69
70#define fh_to_ctx(__fh) container_of(__fh, struct coda_ctx, fh)
71
72static int coda_debug;
Philipp Zabelc4eb1bfc2013-05-21 04:24:16 -030073module_param(coda_debug, int, 0644);
Javier Martin186b2502012-07-26 05:53:35 -030074MODULE_PARM_DESC(coda_debug, "Debug level (0-1)");
75
76enum {
77 V4L2_M2M_SRC = 0,
78 V4L2_M2M_DST = 1,
79};
80
Javier Martin186b2502012-07-26 05:53:35 -030081enum coda_inst_type {
82 CODA_INST_ENCODER,
83 CODA_INST_DECODER,
84};
85
86enum coda_product {
87 CODA_DX6 = 0xf001,
Philipp Zabeldf1e74c2012-07-02 06:07:10 -030088 CODA_7541 = 0xf012,
Javier Martin186b2502012-07-26 05:53:35 -030089};
90
91struct coda_fmt {
92 char *name;
93 u32 fourcc;
Philipp Zabelb96904e2013-05-23 10:42:58 -030094};
95
96struct coda_codec {
97 u32 mode;
98 u32 src_fourcc;
99 u32 dst_fourcc;
100 u32 max_w;
101 u32 max_h;
Javier Martin186b2502012-07-26 05:53:35 -0300102};
103
104struct coda_devtype {
105 char *firmware;
106 enum coda_product product;
Philipp Zabelb96904e2013-05-23 10:42:58 -0300107 struct coda_codec *codecs;
108 unsigned int num_codecs;
Javier Martin186b2502012-07-26 05:53:35 -0300109 size_t workbuf_size;
110};
111
112/* Per-queue, driver-specific private data */
113struct coda_q_data {
114 unsigned int width;
115 unsigned int height;
116 unsigned int sizeimage;
Philipp Zabelb96904e2013-05-23 10:42:58 -0300117 unsigned int fourcc;
Javier Martin186b2502012-07-26 05:53:35 -0300118};
119
120struct coda_aux_buf {
121 void *vaddr;
122 dma_addr_t paddr;
123 u32 size;
124};
125
126struct coda_dev {
127 struct v4l2_device v4l2_dev;
128 struct video_device vfd;
129 struct platform_device *plat_dev;
Emil Goodec06d8752012-08-14 17:44:42 -0300130 const struct coda_devtype *devtype;
Javier Martin186b2502012-07-26 05:53:35 -0300131
132 void __iomem *regs_base;
133 struct clk *clk_per;
134 struct clk *clk_ahb;
135
136 struct coda_aux_buf codebuf;
Philipp Zabel5677e3b2013-06-21 03:55:30 -0300137 struct coda_aux_buf tempbuf;
Javier Martin186b2502012-07-26 05:53:35 -0300138 struct coda_aux_buf workbuf;
Philipp Zabel657eee72013-04-29 16:17:14 -0700139 struct gen_pool *iram_pool;
140 long unsigned int iram_vaddr;
Philipp Zabel10436672012-07-02 09:03:55 -0300141 long unsigned int iram_paddr;
Philipp Zabel657eee72013-04-29 16:17:14 -0700142 unsigned long iram_size;
Javier Martin186b2502012-07-26 05:53:35 -0300143
144 spinlock_t irqlock;
145 struct mutex dev_mutex;
Philipp Zabelfcb62822013-05-23 10:43:00 -0300146 struct mutex coda_mutex;
Javier Martin186b2502012-07-26 05:53:35 -0300147 struct v4l2_m2m_dev *m2m_dev;
148 struct vb2_alloc_ctx *alloc_ctx;
Philipp Zabele11f3e62012-07-25 09:16:58 -0300149 struct list_head instances;
150 unsigned long instance_mask;
Philipp Zabel2fb57f02012-07-25 09:22:07 -0300151 struct delayed_work timeout;
Javier Martin186b2502012-07-26 05:53:35 -0300152};
153
154struct coda_params {
Philipp Zabel8f35c7b2012-07-09 04:25:52 -0300155 u8 rot_mode;
Javier Martin186b2502012-07-26 05:53:35 -0300156 u8 h264_intra_qp;
157 u8 h264_inter_qp;
158 u8 mpeg4_intra_qp;
159 u8 mpeg4_inter_qp;
160 u8 gop_size;
161 int codec_mode;
Philipp Zabel5677e3b2013-06-21 03:55:30 -0300162 int codec_mode_aux;
Javier Martin186b2502012-07-26 05:53:35 -0300163 enum v4l2_mpeg_video_multi_slice_mode slice_mode;
164 u32 framerate;
165 u16 bitrate;
Philipp Zabelc566c782012-08-08 11:59:38 -0300166 u32 slice_max_bits;
Javier Martin186b2502012-07-26 05:53:35 -0300167 u32 slice_max_mb;
168};
169
Philipp Zabelc2d22512013-06-21 03:55:28 -0300170struct coda_iram_info {
171 u32 axi_sram_use;
172 phys_addr_t buf_bit_use;
173 phys_addr_t buf_ip_ac_dc_use;
174 phys_addr_t buf_dbk_y_use;
175 phys_addr_t buf_dbk_c_use;
176 phys_addr_t buf_ovl_use;
177 phys_addr_t buf_btp_use;
178 phys_addr_t search_ram_paddr;
179 int search_ram_size;
180};
181
Javier Martin186b2502012-07-26 05:53:35 -0300182struct coda_ctx {
183 struct coda_dev *dev;
Philipp Zabel918c66f2013-06-27 06:59:01 -0300184 struct mutex buffer_mutex;
Philipp Zabele11f3e62012-07-25 09:16:58 -0300185 struct list_head list;
Philipp Zabel918c66f2013-06-27 06:59:01 -0300186 struct work_struct skip_run;
Javier Martin186b2502012-07-26 05:53:35 -0300187 int aborting;
Philipp Zabel918c66f2013-06-27 06:59:01 -0300188 int initialized;
Philipp Zabelb96904e2013-05-23 10:42:58 -0300189 int streamon_out;
190 int streamon_cap;
Javier Martin186b2502012-07-26 05:53:35 -0300191 u32 isequence;
Philipp Zabel9082a7c2013-06-21 03:55:31 -0300192 u32 qsequence;
Philipp Zabel918c66f2013-06-27 06:59:01 -0300193 u32 osequence;
Javier Martin186b2502012-07-26 05:53:35 -0300194 struct coda_q_data q_data[2];
195 enum coda_inst_type inst_type;
Philipp Zabelb96904e2013-05-23 10:42:58 -0300196 struct coda_codec *codec;
Javier Martin186b2502012-07-26 05:53:35 -0300197 enum v4l2_colorspace colorspace;
198 struct coda_params params;
199 struct v4l2_m2m_ctx *m2m_ctx;
200 struct v4l2_ctrl_handler ctrls;
201 struct v4l2_fh fh;
Javier Martin186b2502012-07-26 05:53:35 -0300202 int gopcounter;
Philipp Zabel918c66f2013-06-27 06:59:01 -0300203 int runcounter;
Javier Martin186b2502012-07-26 05:53:35 -0300204 char vpu_header[3][64];
205 int vpu_header_size[3];
Philipp Zabel9082a7c2013-06-21 03:55:31 -0300206 struct kfifo bitstream_fifo;
207 struct mutex bitstream_mutex;
208 struct coda_aux_buf bitstream;
Philipp Zabel918c66f2013-06-27 06:59:01 -0300209 bool prescan_failed;
Javier Martin186b2502012-07-26 05:53:35 -0300210 struct coda_aux_buf parabuf;
Philipp Zabel918c66f2013-06-27 06:59:01 -0300211 struct coda_aux_buf psbuf;
212 struct coda_aux_buf slicebuf;
Philipp Zabelec25f682012-07-20 08:54:29 -0300213 struct coda_aux_buf internal_frames[CODA_MAX_FRAMEBUFFERS];
Philipp Zabel5677e3b2013-06-21 03:55:30 -0300214 struct coda_aux_buf workbuf;
Philipp Zabelec25f682012-07-20 08:54:29 -0300215 int num_internal_frames;
Javier Martin186b2502012-07-26 05:53:35 -0300216 int idx;
Philipp Zabel5677e3b2013-06-21 03:55:30 -0300217 int reg_idx;
Philipp Zabelc2d22512013-06-21 03:55:28 -0300218 struct coda_iram_info iram_info;
Philipp Zabel9082a7c2013-06-21 03:55:31 -0300219 u32 bit_stream_param;
Philipp Zabel918c66f2013-06-27 06:59:01 -0300220 u32 frm_dis_flg;
221 int display_idx;
Javier Martin186b2502012-07-26 05:53:35 -0300222};
223
Javier Martin832fbb52012-10-29 08:34:59 -0300224static const u8 coda_filler_nal[14] = { 0x00, 0x00, 0x00, 0x01, 0x0c, 0xff,
225 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80 };
226static const u8 coda_filler_size[8] = { 0, 7, 14, 13, 12, 11, 10, 9 };
Javier Martin3f3f5c72012-10-29 05:20:29 -0300227
Javier Martin186b2502012-07-26 05:53:35 -0300228static inline void coda_write(struct coda_dev *dev, u32 data, u32 reg)
229{
230 v4l2_dbg(1, coda_debug, &dev->v4l2_dev,
231 "%s: data=0x%x, reg=0x%x\n", __func__, data, reg);
232 writel(data, dev->regs_base + reg);
233}
234
235static inline unsigned int coda_read(struct coda_dev *dev, u32 reg)
236{
237 u32 data;
238 data = readl(dev->regs_base + reg);
239 v4l2_dbg(1, coda_debug, &dev->v4l2_dev,
240 "%s: data=0x%x, reg=0x%x\n", __func__, data, reg);
241 return data;
242}
243
244static inline unsigned long coda_isbusy(struct coda_dev *dev)
245{
246 return coda_read(dev, CODA_REG_BIT_BUSY);
247}
248
249static inline int coda_is_initialized(struct coda_dev *dev)
250{
251 return (coda_read(dev, CODA_REG_BIT_CUR_PC) != 0);
252}
253
254static int coda_wait_timeout(struct coda_dev *dev)
255{
256 unsigned long timeout = jiffies + msecs_to_jiffies(1000);
257
258 while (coda_isbusy(dev)) {
259 if (time_after(jiffies, timeout))
260 return -ETIMEDOUT;
261 }
262 return 0;
263}
264
265static void coda_command_async(struct coda_ctx *ctx, int cmd)
266{
267 struct coda_dev *dev = ctx->dev;
Philipp Zabel5677e3b2013-06-21 03:55:30 -0300268
269 if (dev->devtype->product == CODA_7541) {
270 /* Restore context related registers to CODA */
Philipp Zabel9082a7c2013-06-21 03:55:31 -0300271 coda_write(dev, ctx->bit_stream_param,
272 CODA_REG_BIT_BIT_STREAM_PARAM);
Philipp Zabel918c66f2013-06-27 06:59:01 -0300273 coda_write(dev, ctx->frm_dis_flg,
274 CODA_REG_BIT_FRM_DIS_FLG(ctx->reg_idx));
Philipp Zabel5677e3b2013-06-21 03:55:30 -0300275 coda_write(dev, ctx->workbuf.paddr, CODA_REG_BIT_WORK_BUF_ADDR);
276 }
277
Javier Martin186b2502012-07-26 05:53:35 -0300278 coda_write(dev, CODA_REG_BIT_BUSY_FLAG, CODA_REG_BIT_BUSY);
279
280 coda_write(dev, ctx->idx, CODA_REG_BIT_RUN_INDEX);
281 coda_write(dev, ctx->params.codec_mode, CODA_REG_BIT_RUN_COD_STD);
Philipp Zabel5677e3b2013-06-21 03:55:30 -0300282 coda_write(dev, ctx->params.codec_mode_aux, CODA7_REG_BIT_RUN_AUX_STD);
283
Javier Martin186b2502012-07-26 05:53:35 -0300284 coda_write(dev, cmd, CODA_REG_BIT_RUN_COMMAND);
285}
286
287static int coda_command_sync(struct coda_ctx *ctx, int cmd)
288{
289 struct coda_dev *dev = ctx->dev;
290
291 coda_command_async(ctx, cmd);
292 return coda_wait_timeout(dev);
293}
294
295static struct coda_q_data *get_q_data(struct coda_ctx *ctx,
296 enum v4l2_buf_type type)
297{
298 switch (type) {
299 case V4L2_BUF_TYPE_VIDEO_OUTPUT:
300 return &(ctx->q_data[V4L2_M2M_SRC]);
301 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
302 return &(ctx->q_data[V4L2_M2M_DST]);
303 default:
304 BUG();
305 }
306 return NULL;
307}
308
309/*
Philipp Zabelb96904e2013-05-23 10:42:58 -0300310 * Array of all formats supported by any version of Coda:
Javier Martin186b2502012-07-26 05:53:35 -0300311 */
Philipp Zabelb96904e2013-05-23 10:42:58 -0300312static struct coda_fmt coda_formats[] = {
Javier Martin186b2502012-07-26 05:53:35 -0300313 {
Philipp Zabelb96904e2013-05-23 10:42:58 -0300314 .name = "YUV 4:2:0 Planar, YCbCr",
Javier Martin186b2502012-07-26 05:53:35 -0300315 .fourcc = V4L2_PIX_FMT_YUV420,
Philipp Zabelb96904e2013-05-23 10:42:58 -0300316 },
317 {
318 .name = "YUV 4:2:0 Planar, YCrCb",
319 .fourcc = V4L2_PIX_FMT_YVU420,
Javier Martin186b2502012-07-26 05:53:35 -0300320 },
321 {
322 .name = "H264 Encoded Stream",
323 .fourcc = V4L2_PIX_FMT_H264,
Javier Martin186b2502012-07-26 05:53:35 -0300324 },
325 {
326 .name = "MPEG4 Encoded Stream",
327 .fourcc = V4L2_PIX_FMT_MPEG4,
Javier Martin186b2502012-07-26 05:53:35 -0300328 },
329};
330
Philipp Zabelb96904e2013-05-23 10:42:58 -0300331#define CODA_CODEC(mode, src_fourcc, dst_fourcc, max_w, max_h) \
332 { mode, src_fourcc, dst_fourcc, max_w, max_h }
333
334/*
335 * Arrays of codecs supported by each given version of Coda:
336 * i.MX27 -> codadx6
337 * i.MX5x -> coda7
338 * i.MX6 -> coda960
339 * Use V4L2_PIX_FMT_YUV420 as placeholder for all supported YUV 4:2:0 variants
340 */
341static struct coda_codec codadx6_codecs[] = {
342 CODA_CODEC(CODADX6_MODE_ENCODE_H264, V4L2_PIX_FMT_YUV420, V4L2_PIX_FMT_H264, 720, 576),
343 CODA_CODEC(CODADX6_MODE_ENCODE_MP4, V4L2_PIX_FMT_YUV420, V4L2_PIX_FMT_MPEG4, 720, 576),
Philipp Zabeldf1e74c2012-07-02 06:07:10 -0300344};
345
Philipp Zabelb96904e2013-05-23 10:42:58 -0300346static struct coda_codec coda7_codecs[] = {
347 CODA_CODEC(CODA7_MODE_ENCODE_H264, V4L2_PIX_FMT_YUV420, V4L2_PIX_FMT_H264, 1280, 720),
348 CODA_CODEC(CODA7_MODE_ENCODE_MP4, V4L2_PIX_FMT_YUV420, V4L2_PIX_FMT_MPEG4, 1280, 720),
Philipp Zabel918c66f2013-06-27 06:59:01 -0300349 CODA_CODEC(CODA7_MODE_DECODE_H264, V4L2_PIX_FMT_H264, V4L2_PIX_FMT_YUV420, 1920, 1080),
350 CODA_CODEC(CODA7_MODE_DECODE_MP4, V4L2_PIX_FMT_MPEG4, V4L2_PIX_FMT_YUV420, 1920, 1080),
Philipp Zabelb96904e2013-05-23 10:42:58 -0300351};
352
353static bool coda_format_is_yuv(u32 fourcc)
Javier Martin186b2502012-07-26 05:53:35 -0300354{
Philipp Zabelb96904e2013-05-23 10:42:58 -0300355 switch (fourcc) {
356 case V4L2_PIX_FMT_YUV420:
357 case V4L2_PIX_FMT_YVU420:
358 return true;
359 default:
360 return false;
361 }
362}
Javier Martin186b2502012-07-26 05:53:35 -0300363
Philipp Zabelb96904e2013-05-23 10:42:58 -0300364/*
365 * Normalize all supported YUV 4:2:0 formats to the value used in the codec
366 * tables.
367 */
368static u32 coda_format_normalize_yuv(u32 fourcc)
369{
370 return coda_format_is_yuv(fourcc) ? V4L2_PIX_FMT_YUV420 : fourcc;
371}
372
373static struct coda_codec *coda_find_codec(struct coda_dev *dev, int src_fourcc,
374 int dst_fourcc)
375{
376 struct coda_codec *codecs = dev->devtype->codecs;
377 int num_codecs = dev->devtype->num_codecs;
378 int k;
379
380 src_fourcc = coda_format_normalize_yuv(src_fourcc);
381 dst_fourcc = coda_format_normalize_yuv(dst_fourcc);
382 if (src_fourcc == dst_fourcc)
383 return NULL;
384
385 for (k = 0; k < num_codecs; k++) {
386 if (codecs[k].src_fourcc == src_fourcc &&
387 codecs[k].dst_fourcc == dst_fourcc)
Javier Martin186b2502012-07-26 05:53:35 -0300388 break;
389 }
390
Philipp Zabelb96904e2013-05-23 10:42:58 -0300391 if (k == num_codecs)
Javier Martin186b2502012-07-26 05:53:35 -0300392 return NULL;
393
Philipp Zabelb96904e2013-05-23 10:42:58 -0300394 return &codecs[k];
Javier Martin186b2502012-07-26 05:53:35 -0300395}
396
397/*
398 * V4L2 ioctl() operations.
399 */
400static int vidioc_querycap(struct file *file, void *priv,
401 struct v4l2_capability *cap)
402{
403 strlcpy(cap->driver, CODA_NAME, sizeof(cap->driver));
404 strlcpy(cap->card, CODA_NAME, sizeof(cap->card));
Philipp Zabeldad0e1c2013-05-21 04:18:22 -0300405 strlcpy(cap->bus_info, "platform:" CODA_NAME, sizeof(cap->bus_info));
Sylwester Nawrockic3aac8b2012-08-22 18:00:19 -0300406 /*
407 * This is only a mem-to-mem video device. The capture and output
408 * device capability flags are left only for backward compatibility
409 * and are scheduled for removal.
410 */
411 cap->device_caps = V4L2_CAP_VIDEO_CAPTURE | V4L2_CAP_VIDEO_OUTPUT |
412 V4L2_CAP_VIDEO_M2M | V4L2_CAP_STREAMING;
Javier Martin186b2502012-07-26 05:53:35 -0300413 cap->capabilities = cap->device_caps | V4L2_CAP_DEVICE_CAPS;
414
415 return 0;
416}
417
418static int enum_fmt(void *priv, struct v4l2_fmtdesc *f,
Philipp Zabel918c66f2013-06-27 06:59:01 -0300419 enum v4l2_buf_type type, int src_fourcc)
Javier Martin186b2502012-07-26 05:53:35 -0300420{
421 struct coda_ctx *ctx = fh_to_ctx(priv);
Philipp Zabelb96904e2013-05-23 10:42:58 -0300422 struct coda_codec *codecs = ctx->dev->devtype->codecs;
423 struct coda_fmt *formats = coda_formats;
Javier Martin186b2502012-07-26 05:53:35 -0300424 struct coda_fmt *fmt;
Philipp Zabelb96904e2013-05-23 10:42:58 -0300425 int num_codecs = ctx->dev->devtype->num_codecs;
426 int num_formats = ARRAY_SIZE(coda_formats);
427 int i, k, num = 0;
Javier Martin186b2502012-07-26 05:53:35 -0300428
429 for (i = 0; i < num_formats; i++) {
Philipp Zabelb96904e2013-05-23 10:42:58 -0300430 /* Both uncompressed formats are always supported */
Philipp Zabel918c66f2013-06-27 06:59:01 -0300431 if (coda_format_is_yuv(formats[i].fourcc) &&
432 !coda_format_is_yuv(src_fourcc)) {
Philipp Zabelb96904e2013-05-23 10:42:58 -0300433 if (num == f->index)
434 break;
435 ++num;
436 continue;
437 }
438 /* Compressed formats may be supported, check the codec list */
439 for (k = 0; k < num_codecs; k++) {
Philipp Zabel918c66f2013-06-27 06:59:01 -0300440 /* if src_fourcc is set, only consider matching codecs */
Philipp Zabelb96904e2013-05-23 10:42:58 -0300441 if (type == V4L2_BUF_TYPE_VIDEO_CAPTURE &&
Philipp Zabel918c66f2013-06-27 06:59:01 -0300442 formats[i].fourcc == codecs[k].dst_fourcc &&
443 (!src_fourcc || src_fourcc == codecs[k].src_fourcc))
Philipp Zabelb96904e2013-05-23 10:42:58 -0300444 break;
445 if (type == V4L2_BUF_TYPE_VIDEO_OUTPUT &&
446 formats[i].fourcc == codecs[k].src_fourcc)
447 break;
448 }
449 if (k < num_codecs) {
Javier Martin186b2502012-07-26 05:53:35 -0300450 if (num == f->index)
451 break;
452 ++num;
453 }
454 }
455
456 if (i < num_formats) {
457 fmt = &formats[i];
458 strlcpy(f->description, fmt->name, sizeof(f->description));
459 f->pixelformat = fmt->fourcc;
460 return 0;
461 }
462
463 /* Format not found */
464 return -EINVAL;
465}
466
467static int vidioc_enum_fmt_vid_cap(struct file *file, void *priv,
468 struct v4l2_fmtdesc *f)
469{
Philipp Zabel918c66f2013-06-27 06:59:01 -0300470 struct coda_ctx *ctx = fh_to_ctx(priv);
471 struct vb2_queue *src_vq;
472 struct coda_q_data *q_data_src;
473
474 /* If the source format is already fixed, only list matching formats */
475 src_vq = v4l2_m2m_get_vq(ctx->m2m_ctx, V4L2_BUF_TYPE_VIDEO_OUTPUT);
476 if (vb2_is_streaming(src_vq)) {
477 q_data_src = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_OUTPUT);
478
479 return enum_fmt(priv, f, V4L2_BUF_TYPE_VIDEO_CAPTURE,
480 q_data_src->fourcc);
481 }
482
483 return enum_fmt(priv, f, V4L2_BUF_TYPE_VIDEO_CAPTURE, 0);
Javier Martin186b2502012-07-26 05:53:35 -0300484}
485
486static int vidioc_enum_fmt_vid_out(struct file *file, void *priv,
487 struct v4l2_fmtdesc *f)
488{
Philipp Zabel918c66f2013-06-27 06:59:01 -0300489 return enum_fmt(priv, f, V4L2_BUF_TYPE_VIDEO_OUTPUT, 0);
Javier Martin186b2502012-07-26 05:53:35 -0300490}
491
492static int vidioc_g_fmt(struct file *file, void *priv, struct v4l2_format *f)
493{
494 struct vb2_queue *vq;
495 struct coda_q_data *q_data;
496 struct coda_ctx *ctx = fh_to_ctx(priv);
497
498 vq = v4l2_m2m_get_vq(ctx->m2m_ctx, f->type);
499 if (!vq)
500 return -EINVAL;
501
502 q_data = get_q_data(ctx, f->type);
503
504 f->fmt.pix.field = V4L2_FIELD_NONE;
Philipp Zabelb96904e2013-05-23 10:42:58 -0300505 f->fmt.pix.pixelformat = q_data->fourcc;
Javier Martin186b2502012-07-26 05:53:35 -0300506 f->fmt.pix.width = q_data->width;
507 f->fmt.pix.height = q_data->height;
Philipp Zabelb96904e2013-05-23 10:42:58 -0300508 if (coda_format_is_yuv(f->fmt.pix.pixelformat))
Javier Martin186b2502012-07-26 05:53:35 -0300509 f->fmt.pix.bytesperline = round_up(f->fmt.pix.width, 2);
510 else /* encoded formats h.264/mpeg4 */
511 f->fmt.pix.bytesperline = 0;
512
513 f->fmt.pix.sizeimage = q_data->sizeimage;
514 f->fmt.pix.colorspace = ctx->colorspace;
515
516 return 0;
517}
518
Philipp Zabelb96904e2013-05-23 10:42:58 -0300519static int vidioc_try_fmt(struct coda_codec *codec, struct v4l2_format *f)
Javier Martin186b2502012-07-26 05:53:35 -0300520{
Philipp Zabelb96904e2013-05-23 10:42:58 -0300521 unsigned int max_w, max_h;
Javier Martin186b2502012-07-26 05:53:35 -0300522 enum v4l2_field field;
523
524 field = f->fmt.pix.field;
525 if (field == V4L2_FIELD_ANY)
526 field = V4L2_FIELD_NONE;
527 else if (V4L2_FIELD_NONE != field)
528 return -EINVAL;
529
530 /* V4L2 specification suggests the driver corrects the format struct
531 * if any of the dimensions is unsupported */
532 f->fmt.pix.field = field;
533
Philipp Zabelb96904e2013-05-23 10:42:58 -0300534 if (codec) {
535 max_w = codec->max_w;
536 max_h = codec->max_h;
537 } else {
538 max_w = MAX_W;
539 max_h = MAX_H;
540 }
541 v4l_bound_align_image(&f->fmt.pix.width, MIN_W, max_w,
542 W_ALIGN, &f->fmt.pix.height,
543 MIN_H, max_h, H_ALIGN, S_ALIGN);
544
545 if (coda_format_is_yuv(f->fmt.pix.pixelformat)) {
Philipp Zabel47cf0c62013-05-23 10:42:54 -0300546 /* Frame stride must be multiple of 8 */
547 f->fmt.pix.bytesperline = round_up(f->fmt.pix.width, 8);
548 f->fmt.pix.sizeimage = f->fmt.pix.bytesperline *
Philipp Zabel451d43a2012-07-26 09:18:27 -0300549 f->fmt.pix.height * 3 / 2;
Javier Martin186b2502012-07-26 05:53:35 -0300550 } else { /*encoded formats h.264/mpeg4 */
551 f->fmt.pix.bytesperline = 0;
552 f->fmt.pix.sizeimage = CODA_MAX_FRAME_SIZE;
553 }
554
555 return 0;
556}
557
558static int vidioc_try_fmt_vid_cap(struct file *file, void *priv,
559 struct v4l2_format *f)
560{
Javier Martin186b2502012-07-26 05:53:35 -0300561 struct coda_ctx *ctx = fh_to_ctx(priv);
Philipp Zabel918c66f2013-06-27 06:59:01 -0300562 struct coda_codec *codec;
563 struct vb2_queue *src_vq;
564 int ret;
Javier Martin186b2502012-07-26 05:53:35 -0300565
Philipp Zabel918c66f2013-06-27 06:59:01 -0300566 /*
567 * If the source format is already fixed, try to find a codec that
568 * converts to the given destination format
569 */
570 src_vq = v4l2_m2m_get_vq(ctx->m2m_ctx, V4L2_BUF_TYPE_VIDEO_OUTPUT);
571 if (vb2_is_streaming(src_vq)) {
572 struct coda_q_data *q_data_src;
573
574 q_data_src = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_OUTPUT);
575 codec = coda_find_codec(ctx->dev, q_data_src->fourcc,
576 f->fmt.pix.pixelformat);
577 if (!codec)
578 return -EINVAL;
579 } else {
580 /* Otherwise determine codec by encoded format, if possible */
581 codec = coda_find_codec(ctx->dev, V4L2_PIX_FMT_YUV420,
582 f->fmt.pix.pixelformat);
583 }
Javier Martin186b2502012-07-26 05:53:35 -0300584
585 f->fmt.pix.colorspace = ctx->colorspace;
586
Philipp Zabel918c66f2013-06-27 06:59:01 -0300587 ret = vidioc_try_fmt(codec, f);
588 if (ret < 0)
589 return ret;
590
591 /* The h.264 decoder only returns complete 16x16 macroblocks */
592 if (codec && codec->src_fourcc == V4L2_PIX_FMT_H264) {
593 f->fmt.pix.width = round_up(f->fmt.pix.width, 16);
594 f->fmt.pix.height = round_up(f->fmt.pix.height, 16);
595 f->fmt.pix.bytesperline = f->fmt.pix.width;
596 f->fmt.pix.sizeimage = f->fmt.pix.bytesperline *
597 f->fmt.pix.height * 3 / 2;
598 }
599
600 return 0;
Javier Martin186b2502012-07-26 05:53:35 -0300601}
602
603static int vidioc_try_fmt_vid_out(struct file *file, void *priv,
604 struct v4l2_format *f)
605{
606 struct coda_ctx *ctx = fh_to_ctx(priv);
Philipp Zabelb96904e2013-05-23 10:42:58 -0300607 struct coda_codec *codec;
Javier Martin186b2502012-07-26 05:53:35 -0300608
Philipp Zabelb96904e2013-05-23 10:42:58 -0300609 /* Determine codec by encoded format, returns NULL if raw or invalid */
610 codec = coda_find_codec(ctx->dev, f->fmt.pix.pixelformat,
611 V4L2_PIX_FMT_YUV420);
Javier Martin186b2502012-07-26 05:53:35 -0300612
613 if (!f->fmt.pix.colorspace)
614 f->fmt.pix.colorspace = V4L2_COLORSPACE_REC709;
615
Philipp Zabelb96904e2013-05-23 10:42:58 -0300616 return vidioc_try_fmt(codec, f);
Javier Martin186b2502012-07-26 05:53:35 -0300617}
618
619static int vidioc_s_fmt(struct coda_ctx *ctx, struct v4l2_format *f)
620{
621 struct coda_q_data *q_data;
622 struct vb2_queue *vq;
Javier Martin186b2502012-07-26 05:53:35 -0300623
624 vq = v4l2_m2m_get_vq(ctx->m2m_ctx, f->type);
625 if (!vq)
626 return -EINVAL;
627
628 q_data = get_q_data(ctx, f->type);
629 if (!q_data)
630 return -EINVAL;
631
632 if (vb2_is_busy(vq)) {
633 v4l2_err(&ctx->dev->v4l2_dev, "%s queue busy\n", __func__);
634 return -EBUSY;
635 }
636
Philipp Zabelb96904e2013-05-23 10:42:58 -0300637 q_data->fourcc = f->fmt.pix.pixelformat;
Javier Martin186b2502012-07-26 05:53:35 -0300638 q_data->width = f->fmt.pix.width;
639 q_data->height = f->fmt.pix.height;
Philipp Zabel451d43a2012-07-26 09:18:27 -0300640 q_data->sizeimage = f->fmt.pix.sizeimage;
Javier Martin186b2502012-07-26 05:53:35 -0300641
642 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
643 "Setting format for type %d, wxh: %dx%d, fmt: %d\n",
Philipp Zabelb96904e2013-05-23 10:42:58 -0300644 f->type, q_data->width, q_data->height, q_data->fourcc);
Javier Martin186b2502012-07-26 05:53:35 -0300645
646 return 0;
647}
648
649static int vidioc_s_fmt_vid_cap(struct file *file, void *priv,
650 struct v4l2_format *f)
651{
Philipp Zabelb96904e2013-05-23 10:42:58 -0300652 struct coda_ctx *ctx = fh_to_ctx(priv);
Javier Martin186b2502012-07-26 05:53:35 -0300653 int ret;
654
655 ret = vidioc_try_fmt_vid_cap(file, priv, f);
656 if (ret)
657 return ret;
658
Philipp Zabelb96904e2013-05-23 10:42:58 -0300659 return vidioc_s_fmt(ctx, f);
Javier Martin186b2502012-07-26 05:53:35 -0300660}
661
662static int vidioc_s_fmt_vid_out(struct file *file, void *priv,
663 struct v4l2_format *f)
664{
665 struct coda_ctx *ctx = fh_to_ctx(priv);
666 int ret;
667
668 ret = vidioc_try_fmt_vid_out(file, priv, f);
669 if (ret)
670 return ret;
671
Richard Zhao8d621472012-08-21 02:47:42 -0300672 ret = vidioc_s_fmt(ctx, f);
Javier Martin186b2502012-07-26 05:53:35 -0300673 if (ret)
674 ctx->colorspace = f->fmt.pix.colorspace;
675
676 return ret;
677}
678
679static int vidioc_reqbufs(struct file *file, void *priv,
680 struct v4l2_requestbuffers *reqbufs)
681{
682 struct coda_ctx *ctx = fh_to_ctx(priv);
683
684 return v4l2_m2m_reqbufs(file, ctx->m2m_ctx, reqbufs);
685}
686
687static int vidioc_querybuf(struct file *file, void *priv,
688 struct v4l2_buffer *buf)
689{
690 struct coda_ctx *ctx = fh_to_ctx(priv);
691
692 return v4l2_m2m_querybuf(file, ctx->m2m_ctx, buf);
693}
694
695static int vidioc_qbuf(struct file *file, void *priv, struct v4l2_buffer *buf)
696{
697 struct coda_ctx *ctx = fh_to_ctx(priv);
698
699 return v4l2_m2m_qbuf(file, ctx->m2m_ctx, buf);
700}
701
Philipp Zabel419869c2013-05-23 07:06:30 -0300702static int vidioc_expbuf(struct file *file, void *priv,
703 struct v4l2_exportbuffer *eb)
704{
705 struct coda_ctx *ctx = fh_to_ctx(priv);
706
707 return v4l2_m2m_expbuf(file, ctx->m2m_ctx, eb);
708}
709
Philipp Zabel918c66f2013-06-27 06:59:01 -0300710static bool coda_buf_is_end_of_stream(struct coda_ctx *ctx,
711 struct v4l2_buffer *buf)
712{
713 struct vb2_queue *src_vq;
714
715 src_vq = v4l2_m2m_get_vq(ctx->m2m_ctx, V4L2_BUF_TYPE_VIDEO_OUTPUT);
716
717 return ((ctx->bit_stream_param & CODA_BIT_STREAM_END_FLAG) &&
718 (buf->sequence == (ctx->qsequence - 1)));
719}
720
Javier Martin186b2502012-07-26 05:53:35 -0300721static int vidioc_dqbuf(struct file *file, void *priv, struct v4l2_buffer *buf)
722{
723 struct coda_ctx *ctx = fh_to_ctx(priv);
Philipp Zabel918c66f2013-06-27 06:59:01 -0300724 int ret;
Javier Martin186b2502012-07-26 05:53:35 -0300725
Philipp Zabel918c66f2013-06-27 06:59:01 -0300726 ret = v4l2_m2m_dqbuf(file, ctx->m2m_ctx, buf);
727
728 /* If this is the last capture buffer, emit an end-of-stream event */
729 if (buf->type == V4L2_BUF_TYPE_VIDEO_CAPTURE &&
730 coda_buf_is_end_of_stream(ctx, buf)) {
731 const struct v4l2_event eos_event = {
732 .type = V4L2_EVENT_EOS
733 };
734
735 v4l2_event_queue_fh(&ctx->fh, &eos_event);
736 }
737
738 return ret;
Javier Martin186b2502012-07-26 05:53:35 -0300739}
740
Philipp Zabel8fdf94a2013-05-21 04:16:29 -0300741static int vidioc_create_bufs(struct file *file, void *priv,
742 struct v4l2_create_buffers *create)
743{
744 struct coda_ctx *ctx = fh_to_ctx(priv);
745
746 return v4l2_m2m_create_bufs(file, ctx->m2m_ctx, create);
747}
748
Javier Martin186b2502012-07-26 05:53:35 -0300749static int vidioc_streamon(struct file *file, void *priv,
750 enum v4l2_buf_type type)
751{
752 struct coda_ctx *ctx = fh_to_ctx(priv);
753
754 return v4l2_m2m_streamon(file, ctx->m2m_ctx, type);
755}
756
757static int vidioc_streamoff(struct file *file, void *priv,
758 enum v4l2_buf_type type)
759{
760 struct coda_ctx *ctx = fh_to_ctx(priv);
Philipp Zabel918c66f2013-06-27 06:59:01 -0300761 int ret;
Javier Martin186b2502012-07-26 05:53:35 -0300762
Philipp Zabel918c66f2013-06-27 06:59:01 -0300763 /*
764 * This indirectly calls __vb2_queue_cancel, which dequeues all buffers.
765 * We therefore have to lock it against running hardware in this context,
766 * which still needs the buffers.
767 */
768 mutex_lock(&ctx->buffer_mutex);
769 ret = v4l2_m2m_streamoff(file, ctx->m2m_ctx, type);
770 mutex_unlock(&ctx->buffer_mutex);
771
772 return ret;
773}
774
775static int vidioc_decoder_cmd(struct file *file, void *fh,
776 struct v4l2_decoder_cmd *dc)
777{
778 struct coda_ctx *ctx = fh_to_ctx(fh);
779
780 if (dc->cmd != V4L2_DEC_CMD_STOP)
781 return -EINVAL;
782
783 if ((dc->flags & V4L2_DEC_CMD_STOP_TO_BLACK) ||
784 (dc->flags & V4L2_DEC_CMD_STOP_IMMEDIATELY))
785 return -EINVAL;
786
787 if (dc->stop.pts != 0)
788 return -EINVAL;
789
790 if (ctx->inst_type != CODA_INST_DECODER)
791 return -EINVAL;
792
793 /* Set the strem-end flag on this context */
794 ctx->bit_stream_param |= CODA_BIT_STREAM_END_FLAG;
795
796 return 0;
797}
798
799static int vidioc_subscribe_event(struct v4l2_fh *fh,
800 const struct v4l2_event_subscription *sub)
801{
802 switch (sub->type) {
803 case V4L2_EVENT_EOS:
804 return v4l2_event_subscribe(fh, sub, 0, NULL);
805 default:
806 return v4l2_ctrl_subscribe_event(fh, sub);
807 }
Javier Martin186b2502012-07-26 05:53:35 -0300808}
809
810static const struct v4l2_ioctl_ops coda_ioctl_ops = {
811 .vidioc_querycap = vidioc_querycap,
812
813 .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap,
814 .vidioc_g_fmt_vid_cap = vidioc_g_fmt,
815 .vidioc_try_fmt_vid_cap = vidioc_try_fmt_vid_cap,
816 .vidioc_s_fmt_vid_cap = vidioc_s_fmt_vid_cap,
817
818 .vidioc_enum_fmt_vid_out = vidioc_enum_fmt_vid_out,
819 .vidioc_g_fmt_vid_out = vidioc_g_fmt,
820 .vidioc_try_fmt_vid_out = vidioc_try_fmt_vid_out,
821 .vidioc_s_fmt_vid_out = vidioc_s_fmt_vid_out,
822
823 .vidioc_reqbufs = vidioc_reqbufs,
824 .vidioc_querybuf = vidioc_querybuf,
825
826 .vidioc_qbuf = vidioc_qbuf,
Philipp Zabel419869c2013-05-23 07:06:30 -0300827 .vidioc_expbuf = vidioc_expbuf,
Javier Martin186b2502012-07-26 05:53:35 -0300828 .vidioc_dqbuf = vidioc_dqbuf,
Philipp Zabel8fdf94a2013-05-21 04:16:29 -0300829 .vidioc_create_bufs = vidioc_create_bufs,
Javier Martin186b2502012-07-26 05:53:35 -0300830
831 .vidioc_streamon = vidioc_streamon,
832 .vidioc_streamoff = vidioc_streamoff,
Philipp Zabel918c66f2013-06-27 06:59:01 -0300833
834 .vidioc_decoder_cmd = vidioc_decoder_cmd,
835
836 .vidioc_subscribe_event = vidioc_subscribe_event,
837 .vidioc_unsubscribe_event = v4l2_event_unsubscribe,
Javier Martin186b2502012-07-26 05:53:35 -0300838};
839
Philipp Zabel918c66f2013-06-27 06:59:01 -0300840static int coda_start_decoding(struct coda_ctx *ctx);
841
842static void coda_skip_run(struct work_struct *work)
843{
844 struct coda_ctx *ctx = container_of(work, struct coda_ctx, skip_run);
845
846 v4l2_m2m_job_finish(ctx->dev->m2m_dev, ctx->m2m_ctx);
847}
848
Philipp Zabel9082a7c2013-06-21 03:55:31 -0300849static inline int coda_get_bitstream_payload(struct coda_ctx *ctx)
850{
851 return kfifo_len(&ctx->bitstream_fifo);
852}
853
854static void coda_kfifo_sync_from_device(struct coda_ctx *ctx)
855{
856 struct __kfifo *kfifo = &ctx->bitstream_fifo.kfifo;
857 struct coda_dev *dev = ctx->dev;
858 u32 rd_ptr;
859
860 rd_ptr = coda_read(dev, CODA_REG_BIT_RD_PTR(ctx->reg_idx));
861 kfifo->out = (kfifo->in & ~kfifo->mask) |
862 (rd_ptr - ctx->bitstream.paddr);
863 if (kfifo->out > kfifo->in)
864 kfifo->out -= kfifo->mask + 1;
865}
866
867static void coda_kfifo_sync_to_device_full(struct coda_ctx *ctx)
868{
869 struct __kfifo *kfifo = &ctx->bitstream_fifo.kfifo;
870 struct coda_dev *dev = ctx->dev;
871 u32 rd_ptr, wr_ptr;
872
873 rd_ptr = ctx->bitstream.paddr + (kfifo->out & kfifo->mask);
874 coda_write(dev, rd_ptr, CODA_REG_BIT_RD_PTR(ctx->reg_idx));
875 wr_ptr = ctx->bitstream.paddr + (kfifo->in & kfifo->mask);
876 coda_write(dev, wr_ptr, CODA_REG_BIT_WR_PTR(ctx->reg_idx));
877}
878
879static void coda_kfifo_sync_to_device_write(struct coda_ctx *ctx)
880{
881 struct __kfifo *kfifo = &ctx->bitstream_fifo.kfifo;
882 struct coda_dev *dev = ctx->dev;
883 u32 wr_ptr;
884
885 wr_ptr = ctx->bitstream.paddr + (kfifo->in & kfifo->mask);
886 coda_write(dev, wr_ptr, CODA_REG_BIT_WR_PTR(ctx->reg_idx));
887}
888
889static int coda_bitstream_queue(struct coda_ctx *ctx, struct vb2_buffer *src_buf)
890{
891 u32 src_size = vb2_get_plane_payload(src_buf, 0);
892 u32 n;
893
894 n = kfifo_in(&ctx->bitstream_fifo, vb2_plane_vaddr(src_buf, 0), src_size);
895 if (n < src_size)
896 return -ENOSPC;
897
898 dma_sync_single_for_device(&ctx->dev->plat_dev->dev, ctx->bitstream.paddr,
899 ctx->bitstream.size, DMA_TO_DEVICE);
900
901 ctx->qsequence++;
902
903 return 0;
904}
905
906static bool coda_bitstream_try_queue(struct coda_ctx *ctx,
907 struct vb2_buffer *src_buf)
908{
909 int ret;
910
911 if (coda_get_bitstream_payload(ctx) +
912 vb2_get_plane_payload(src_buf, 0) + 512 >= ctx->bitstream.size)
913 return false;
914
915 if (vb2_plane_vaddr(src_buf, 0) == NULL) {
916 v4l2_err(&ctx->dev->v4l2_dev, "trying to queue empty buffer\n");
917 return true;
918 }
919
920 ret = coda_bitstream_queue(ctx, src_buf);
921 if (ret < 0) {
922 v4l2_err(&ctx->dev->v4l2_dev, "bitstream buffer overflow\n");
923 return false;
924 }
925 /* Sync read pointer to device */
926 if (ctx == v4l2_m2m_get_curr_priv(ctx->dev->m2m_dev))
927 coda_kfifo_sync_to_device_write(ctx);
928
Philipp Zabel918c66f2013-06-27 06:59:01 -0300929 ctx->prescan_failed = false;
930
Philipp Zabel9082a7c2013-06-21 03:55:31 -0300931 return true;
932}
933
934static void coda_fill_bitstream(struct coda_ctx *ctx)
935{
936 struct vb2_buffer *src_buf;
937
938 while (v4l2_m2m_num_src_bufs_ready(ctx->m2m_ctx) > 0) {
939 src_buf = v4l2_m2m_next_src_buf(ctx->m2m_ctx);
940
941 if (coda_bitstream_try_queue(ctx, src_buf)) {
942 src_buf = v4l2_m2m_src_buf_remove(ctx->m2m_ctx);
943 v4l2_m2m_buf_done(src_buf, VB2_BUF_STATE_DONE);
944 } else {
945 break;
946 }
947 }
948}
949
Javier Martin186b2502012-07-26 05:53:35 -0300950/*
951 * Mem-to-mem operations.
952 */
Philipp Zabel918c66f2013-06-27 06:59:01 -0300953static int coda_prepare_decode(struct coda_ctx *ctx)
954{
955 struct vb2_buffer *dst_buf;
956 struct coda_dev *dev = ctx->dev;
957 struct coda_q_data *q_data_dst;
958 u32 stridey, height;
959 u32 picture_y, picture_cb, picture_cr;
960
961 dst_buf = v4l2_m2m_next_dst_buf(ctx->m2m_ctx);
962 q_data_dst = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_CAPTURE);
963
964 if (ctx->params.rot_mode & CODA_ROT_90) {
965 stridey = q_data_dst->height;
966 height = q_data_dst->width;
967 } else {
968 stridey = q_data_dst->width;
969 height = q_data_dst->height;
970 }
971
972 /* Try to copy source buffer contents into the bitstream ringbuffer */
973 mutex_lock(&ctx->bitstream_mutex);
974 coda_fill_bitstream(ctx);
975 mutex_unlock(&ctx->bitstream_mutex);
976
977 if (coda_get_bitstream_payload(ctx) < 512 &&
978 (!(ctx->bit_stream_param & CODA_BIT_STREAM_END_FLAG))) {
979 v4l2_dbg(1, coda_debug, &dev->v4l2_dev,
980 "bitstream payload: %d, skipping\n",
981 coda_get_bitstream_payload(ctx));
982 schedule_work(&ctx->skip_run);
983 return -EAGAIN;
984 }
985
986 /* Run coda_start_decoding (again) if not yet initialized */
987 if (!ctx->initialized) {
988 int ret = coda_start_decoding(ctx);
989 if (ret < 0) {
990 v4l2_err(&dev->v4l2_dev, "failed to start decoding\n");
991 schedule_work(&ctx->skip_run);
992 return -EAGAIN;
993 } else {
994 ctx->initialized = 1;
995 }
996 }
997
998 /* Set rotator output */
999 picture_y = vb2_dma_contig_plane_dma_addr(dst_buf, 0);
1000 if (q_data_dst->fourcc == V4L2_PIX_FMT_YVU420) {
1001 /* Switch Cr and Cb for YVU420 format */
1002 picture_cr = picture_y + stridey * height;
1003 picture_cb = picture_cr + stridey / 2 * height / 2;
1004 } else {
1005 picture_cb = picture_y + stridey * height;
1006 picture_cr = picture_cb + stridey / 2 * height / 2;
1007 }
1008 coda_write(dev, picture_y, CODA_CMD_DEC_PIC_ROT_ADDR_Y);
1009 coda_write(dev, picture_cb, CODA_CMD_DEC_PIC_ROT_ADDR_CB);
1010 coda_write(dev, picture_cr, CODA_CMD_DEC_PIC_ROT_ADDR_CR);
1011 coda_write(dev, stridey, CODA_CMD_DEC_PIC_ROT_STRIDE);
1012 coda_write(dev, CODA_ROT_MIR_ENABLE | ctx->params.rot_mode,
1013 CODA_CMD_DEC_PIC_ROT_MODE);
1014
1015 switch (dev->devtype->product) {
1016 case CODA_DX6:
1017 /* TBD */
1018 case CODA_7541:
1019 coda_write(dev, CODA_PRE_SCAN_EN, CODA_CMD_DEC_PIC_OPTION);
1020 break;
1021 }
1022
1023 coda_write(dev, 0, CODA_CMD_DEC_PIC_SKIP_NUM);
1024
1025 coda_write(dev, 0, CODA_CMD_DEC_PIC_BB_START);
1026 coda_write(dev, 0, CODA_CMD_DEC_PIC_START_BYTE);
1027
1028 return 0;
1029}
1030
Philipp Zabel477c1cf2013-06-21 03:55:33 -03001031static void coda_prepare_encode(struct coda_ctx *ctx)
Javier Martin186b2502012-07-26 05:53:35 -03001032{
Javier Martin186b2502012-07-26 05:53:35 -03001033 struct coda_q_data *q_data_src, *q_data_dst;
1034 struct vb2_buffer *src_buf, *dst_buf;
1035 struct coda_dev *dev = ctx->dev;
1036 int force_ipicture;
1037 int quant_param = 0;
1038 u32 picture_y, picture_cb, picture_cr;
1039 u32 pic_stream_buffer_addr, pic_stream_buffer_size;
1040 u32 dst_fourcc;
1041
1042 src_buf = v4l2_m2m_next_src_buf(ctx->m2m_ctx);
1043 dst_buf = v4l2_m2m_next_dst_buf(ctx->m2m_ctx);
1044 q_data_src = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_OUTPUT);
1045 q_data_dst = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_CAPTURE);
Philipp Zabelb96904e2013-05-23 10:42:58 -03001046 dst_fourcc = q_data_dst->fourcc;
Javier Martin186b2502012-07-26 05:53:35 -03001047
Philipp Zabel918c66f2013-06-27 06:59:01 -03001048 src_buf->v4l2_buf.sequence = ctx->osequence;
1049 dst_buf->v4l2_buf.sequence = ctx->osequence;
1050 ctx->osequence++;
Javier Martin186b2502012-07-26 05:53:35 -03001051
1052 /*
1053 * Workaround coda firmware BUG that only marks the first
1054 * frame as IDR. This is a problem for some decoders that can't
1055 * recover when a frame is lost.
1056 */
1057 if (src_buf->v4l2_buf.sequence % ctx->params.gop_size) {
1058 src_buf->v4l2_buf.flags |= V4L2_BUF_FLAG_PFRAME;
1059 src_buf->v4l2_buf.flags &= ~V4L2_BUF_FLAG_KEYFRAME;
1060 } else {
1061 src_buf->v4l2_buf.flags |= V4L2_BUF_FLAG_KEYFRAME;
1062 src_buf->v4l2_buf.flags &= ~V4L2_BUF_FLAG_PFRAME;
1063 }
1064
1065 /*
1066 * Copy headers at the beginning of the first frame for H.264 only.
1067 * In MPEG4 they are already copied by the coda.
1068 */
1069 if (src_buf->v4l2_buf.sequence == 0) {
1070 pic_stream_buffer_addr =
1071 vb2_dma_contig_plane_dma_addr(dst_buf, 0) +
1072 ctx->vpu_header_size[0] +
1073 ctx->vpu_header_size[1] +
1074 ctx->vpu_header_size[2];
1075 pic_stream_buffer_size = CODA_MAX_FRAME_SIZE -
1076 ctx->vpu_header_size[0] -
1077 ctx->vpu_header_size[1] -
1078 ctx->vpu_header_size[2];
1079 memcpy(vb2_plane_vaddr(dst_buf, 0),
1080 &ctx->vpu_header[0][0], ctx->vpu_header_size[0]);
1081 memcpy(vb2_plane_vaddr(dst_buf, 0) + ctx->vpu_header_size[0],
1082 &ctx->vpu_header[1][0], ctx->vpu_header_size[1]);
1083 memcpy(vb2_plane_vaddr(dst_buf, 0) + ctx->vpu_header_size[0] +
1084 ctx->vpu_header_size[1], &ctx->vpu_header[2][0],
1085 ctx->vpu_header_size[2]);
1086 } else {
1087 pic_stream_buffer_addr =
1088 vb2_dma_contig_plane_dma_addr(dst_buf, 0);
1089 pic_stream_buffer_size = CODA_MAX_FRAME_SIZE;
1090 }
1091
1092 if (src_buf->v4l2_buf.flags & V4L2_BUF_FLAG_KEYFRAME) {
1093 force_ipicture = 1;
1094 switch (dst_fourcc) {
1095 case V4L2_PIX_FMT_H264:
1096 quant_param = ctx->params.h264_intra_qp;
1097 break;
1098 case V4L2_PIX_FMT_MPEG4:
1099 quant_param = ctx->params.mpeg4_intra_qp;
1100 break;
1101 default:
1102 v4l2_warn(&ctx->dev->v4l2_dev,
1103 "cannot set intra qp, fmt not supported\n");
1104 break;
1105 }
1106 } else {
1107 force_ipicture = 0;
1108 switch (dst_fourcc) {
1109 case V4L2_PIX_FMT_H264:
1110 quant_param = ctx->params.h264_inter_qp;
1111 break;
1112 case V4L2_PIX_FMT_MPEG4:
1113 quant_param = ctx->params.mpeg4_inter_qp;
1114 break;
1115 default:
1116 v4l2_warn(&ctx->dev->v4l2_dev,
1117 "cannot set inter qp, fmt not supported\n");
1118 break;
1119 }
1120 }
1121
1122 /* submit */
Philipp Zabel8f35c7b2012-07-09 04:25:52 -03001123 coda_write(dev, CODA_ROT_MIR_ENABLE | ctx->params.rot_mode, CODA_CMD_ENC_PIC_ROT_MODE);
Javier Martin186b2502012-07-26 05:53:35 -03001124 coda_write(dev, quant_param, CODA_CMD_ENC_PIC_QS);
1125
1126
1127 picture_y = vb2_dma_contig_plane_dma_addr(src_buf, 0);
Philipp Zabelb96904e2013-05-23 10:42:58 -03001128 switch (q_data_src->fourcc) {
1129 case V4L2_PIX_FMT_YVU420:
1130 /* Switch Cb and Cr for YVU420 format */
1131 picture_cr = picture_y + q_data_src->width * q_data_src->height;
1132 picture_cb = picture_cr + q_data_src->width / 2 *
1133 q_data_src->height / 2;
1134 break;
1135 case V4L2_PIX_FMT_YUV420:
1136 default:
1137 picture_cb = picture_y + q_data_src->width * q_data_src->height;
1138 picture_cr = picture_cb + q_data_src->width / 2 *
1139 q_data_src->height / 2;
1140 break;
1141 }
Javier Martin186b2502012-07-26 05:53:35 -03001142
1143 coda_write(dev, picture_y, CODA_CMD_ENC_PIC_SRC_ADDR_Y);
1144 coda_write(dev, picture_cb, CODA_CMD_ENC_PIC_SRC_ADDR_CB);
1145 coda_write(dev, picture_cr, CODA_CMD_ENC_PIC_SRC_ADDR_CR);
1146 coda_write(dev, force_ipicture << 1 & 0x2,
1147 CODA_CMD_ENC_PIC_OPTION);
1148
1149 coda_write(dev, pic_stream_buffer_addr, CODA_CMD_ENC_PIC_BB_START);
1150 coda_write(dev, pic_stream_buffer_size / 1024,
1151 CODA_CMD_ENC_PIC_BB_SIZE);
Philipp Zabel477c1cf2013-06-21 03:55:33 -03001152}
1153
1154static void coda_device_run(void *m2m_priv)
1155{
1156 struct coda_ctx *ctx = m2m_priv;
1157 struct coda_dev *dev = ctx->dev;
Philipp Zabel918c66f2013-06-27 06:59:01 -03001158 int ret;
1159
1160 mutex_lock(&ctx->buffer_mutex);
1161
1162 /*
1163 * If streamoff dequeued all buffers before we could get the lock,
1164 * just bail out immediately.
1165 */
1166 if ((!v4l2_m2m_num_src_bufs_ready(ctx->m2m_ctx) &&
1167 ctx->inst_type != CODA_INST_DECODER) ||
1168 !v4l2_m2m_num_dst_bufs_ready(ctx->m2m_ctx)) {
1169 v4l2_dbg(1, coda_debug, &dev->v4l2_dev,
1170 "%d: device_run without buffers\n", ctx->idx);
1171 mutex_unlock(&ctx->buffer_mutex);
1172 schedule_work(&ctx->skip_run);
1173 return;
1174 }
Philipp Zabel477c1cf2013-06-21 03:55:33 -03001175
1176 mutex_lock(&dev->coda_mutex);
1177
Philipp Zabel918c66f2013-06-27 06:59:01 -03001178 if (ctx->inst_type == CODA_INST_DECODER) {
1179 ret = coda_prepare_decode(ctx);
1180 if (ret < 0) {
1181 mutex_unlock(&dev->coda_mutex);
1182 mutex_unlock(&ctx->buffer_mutex);
1183 /* job_finish scheduled by prepare_decode */
1184 return;
1185 }
1186 } else {
1187 coda_prepare_encode(ctx);
Philipp Zabel10436672012-07-02 09:03:55 -03001188 }
1189
Philipp Zabelc2d22512013-06-21 03:55:28 -03001190 if (dev->devtype->product != CODA_DX6)
1191 coda_write(dev, ctx->iram_info.axi_sram_use,
1192 CODA7_REG_BIT_AXI_SRAM_USE);
1193
Philipp Zabel2fb57f02012-07-25 09:22:07 -03001194 /* 1 second timeout in case CODA locks up */
1195 schedule_delayed_work(&dev->timeout, HZ);
1196
Philipp Zabel918c66f2013-06-27 06:59:01 -03001197 if (ctx->inst_type == CODA_INST_DECODER)
1198 coda_kfifo_sync_to_device_full(ctx);
Javier Martin186b2502012-07-26 05:53:35 -03001199 coda_command_async(ctx, CODA_COMMAND_PIC_RUN);
1200}
1201
1202static int coda_job_ready(void *m2m_priv)
1203{
1204 struct coda_ctx *ctx = m2m_priv;
1205
1206 /*
1207 * For both 'P' and 'key' frame cases 1 picture
Philipp Zabel9082a7c2013-06-21 03:55:31 -03001208 * and 1 frame are needed. In the decoder case,
1209 * the compressed frame can be in the bitstream.
Javier Martin186b2502012-07-26 05:53:35 -03001210 */
Philipp Zabel9082a7c2013-06-21 03:55:31 -03001211 if (!v4l2_m2m_num_src_bufs_ready(ctx->m2m_ctx) &&
1212 ctx->inst_type != CODA_INST_DECODER) {
Javier Martin186b2502012-07-26 05:53:35 -03001213 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
1214 "not ready: not enough video buffers.\n");
1215 return 0;
1216 }
1217
Philipp Zabel9082a7c2013-06-21 03:55:31 -03001218 if (!v4l2_m2m_num_dst_bufs_ready(ctx->m2m_ctx)) {
1219 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
1220 "not ready: not enough video capture buffers.\n");
1221 return 0;
1222 }
1223
Philipp Zabel918c66f2013-06-27 06:59:01 -03001224 if (ctx->prescan_failed ||
1225 ((ctx->inst_type == CODA_INST_DECODER) &&
1226 (coda_get_bitstream_payload(ctx) < 512) &&
1227 !(ctx->bit_stream_param & CODA_BIT_STREAM_END_FLAG))) {
1228 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
1229 "%d: not ready: not enough bitstream data.\n",
1230 ctx->idx);
1231 return 0;
1232 }
1233
Philipp Zabel3e748262013-05-23 10:43:01 -03001234 if (ctx->aborting) {
1235 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
1236 "not ready: aborting\n");
1237 return 0;
1238 }
1239
Javier Martin186b2502012-07-26 05:53:35 -03001240 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
1241 "job ready\n");
1242 return 1;
1243}
1244
1245static void coda_job_abort(void *priv)
1246{
1247 struct coda_ctx *ctx = priv;
Javier Martin186b2502012-07-26 05:53:35 -03001248
1249 ctx->aborting = 1;
1250
1251 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
1252 "Aborting task\n");
Javier Martin186b2502012-07-26 05:53:35 -03001253}
1254
1255static void coda_lock(void *m2m_priv)
1256{
1257 struct coda_ctx *ctx = m2m_priv;
1258 struct coda_dev *pcdev = ctx->dev;
1259 mutex_lock(&pcdev->dev_mutex);
1260}
1261
1262static void coda_unlock(void *m2m_priv)
1263{
1264 struct coda_ctx *ctx = m2m_priv;
1265 struct coda_dev *pcdev = ctx->dev;
1266 mutex_unlock(&pcdev->dev_mutex);
1267}
1268
1269static struct v4l2_m2m_ops coda_m2m_ops = {
1270 .device_run = coda_device_run,
1271 .job_ready = coda_job_ready,
1272 .job_abort = coda_job_abort,
1273 .lock = coda_lock,
1274 .unlock = coda_unlock,
1275};
1276
1277static void set_default_params(struct coda_ctx *ctx)
1278{
Philipp Zabelb96904e2013-05-23 10:42:58 -03001279 int max_w;
1280 int max_h;
1281
1282 ctx->codec = &ctx->dev->devtype->codecs[0];
1283 max_w = ctx->codec->max_w;
1284 max_h = ctx->codec->max_h;
Javier Martin186b2502012-07-26 05:53:35 -03001285
1286 ctx->params.codec_mode = CODA_MODE_INVALID;
1287 ctx->colorspace = V4L2_COLORSPACE_REC709;
1288 ctx->params.framerate = 30;
Javier Martin186b2502012-07-26 05:53:35 -03001289 ctx->aborting = 0;
1290
1291 /* Default formats for output and input queues */
Philipp Zabelb96904e2013-05-23 10:42:58 -03001292 ctx->q_data[V4L2_M2M_SRC].fourcc = ctx->codec->src_fourcc;
1293 ctx->q_data[V4L2_M2M_DST].fourcc = ctx->codec->dst_fourcc;
1294 ctx->q_data[V4L2_M2M_SRC].width = max_w;
1295 ctx->q_data[V4L2_M2M_SRC].height = max_h;
1296 ctx->q_data[V4L2_M2M_SRC].sizeimage = (max_w * max_h * 3) / 2;
1297 ctx->q_data[V4L2_M2M_DST].width = max_w;
1298 ctx->q_data[V4L2_M2M_DST].height = max_h;
Javier Martin186b2502012-07-26 05:53:35 -03001299 ctx->q_data[V4L2_M2M_DST].sizeimage = CODA_MAX_FRAME_SIZE;
1300}
1301
1302/*
1303 * Queue operations
1304 */
1305static int coda_queue_setup(struct vb2_queue *vq,
1306 const struct v4l2_format *fmt,
1307 unsigned int *nbuffers, unsigned int *nplanes,
1308 unsigned int sizes[], void *alloc_ctxs[])
1309{
1310 struct coda_ctx *ctx = vb2_get_drv_priv(vq);
Philipp Zabele34db062012-08-29 08:22:00 -03001311 struct coda_q_data *q_data;
Javier Martin186b2502012-07-26 05:53:35 -03001312 unsigned int size;
1313
Philipp Zabele34db062012-08-29 08:22:00 -03001314 q_data = get_q_data(ctx, vq->type);
1315 size = q_data->sizeimage;
Javier Martin186b2502012-07-26 05:53:35 -03001316
1317 *nplanes = 1;
1318 sizes[0] = size;
1319
1320 alloc_ctxs[0] = ctx->dev->alloc_ctx;
1321
1322 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
1323 "get %d buffer(s) of size %d each.\n", *nbuffers, size);
1324
1325 return 0;
1326}
1327
1328static int coda_buf_prepare(struct vb2_buffer *vb)
1329{
1330 struct coda_ctx *ctx = vb2_get_drv_priv(vb->vb2_queue);
1331 struct coda_q_data *q_data;
1332
1333 q_data = get_q_data(ctx, vb->vb2_queue->type);
1334
1335 if (vb2_plane_size(vb, 0) < q_data->sizeimage) {
1336 v4l2_warn(&ctx->dev->v4l2_dev,
1337 "%s data will not fit into plane (%lu < %lu)\n",
1338 __func__, vb2_plane_size(vb, 0),
1339 (long)q_data->sizeimage);
1340 return -EINVAL;
1341 }
1342
Javier Martin186b2502012-07-26 05:53:35 -03001343 return 0;
1344}
1345
1346static void coda_buf_queue(struct vb2_buffer *vb)
1347{
1348 struct coda_ctx *ctx = vb2_get_drv_priv(vb->vb2_queue);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001349 struct coda_q_data *q_data;
1350
1351 q_data = get_q_data(ctx, vb->vb2_queue->type);
1352
1353 /*
1354 * In the decoder case, immediately try to copy the buffer into the
1355 * bitstream ringbuffer and mark it as ready to be dequeued.
1356 */
1357 if (q_data->fourcc == V4L2_PIX_FMT_H264 &&
1358 vb->vb2_queue->type == V4L2_BUF_TYPE_VIDEO_OUTPUT) {
1359 /*
1360 * For backwards compatiblity, queuing an empty buffer marks
1361 * the stream end
1362 */
1363 if (vb2_get_plane_payload(vb, 0) == 0)
1364 ctx->bit_stream_param |= CODA_BIT_STREAM_END_FLAG;
1365 mutex_lock(&ctx->bitstream_mutex);
1366 v4l2_m2m_buf_queue(ctx->m2m_ctx, vb);
1367 coda_fill_bitstream(ctx);
1368 mutex_unlock(&ctx->bitstream_mutex);
1369 } else {
1370 v4l2_m2m_buf_queue(ctx->m2m_ctx, vb);
1371 }
Javier Martin186b2502012-07-26 05:53:35 -03001372}
1373
1374static void coda_wait_prepare(struct vb2_queue *q)
1375{
1376 struct coda_ctx *ctx = vb2_get_drv_priv(q);
1377 coda_unlock(ctx);
1378}
1379
1380static void coda_wait_finish(struct vb2_queue *q)
1381{
1382 struct coda_ctx *ctx = vb2_get_drv_priv(q);
1383 coda_lock(ctx);
1384}
1385
Philipp Zabel86eda902013-05-23 10:42:57 -03001386static void coda_parabuf_write(struct coda_ctx *ctx, int index, u32 value)
1387{
1388 struct coda_dev *dev = ctx->dev;
1389 u32 *p = ctx->parabuf.vaddr;
1390
1391 if (dev->devtype->product == CODA_DX6)
1392 p[index] = value;
1393 else
1394 p[index ^ 1] = value;
1395}
1396
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001397static int coda_alloc_aux_buf(struct coda_dev *dev,
1398 struct coda_aux_buf *buf, size_t size)
1399{
1400 buf->vaddr = dma_alloc_coherent(&dev->plat_dev->dev, size, &buf->paddr,
1401 GFP_KERNEL);
1402 if (!buf->vaddr)
1403 return -ENOMEM;
1404
1405 buf->size = size;
1406
1407 return 0;
1408}
1409
1410static inline int coda_alloc_context_buf(struct coda_ctx *ctx,
1411 struct coda_aux_buf *buf, size_t size)
1412{
1413 return coda_alloc_aux_buf(ctx->dev, buf, size);
1414}
1415
1416static void coda_free_aux_buf(struct coda_dev *dev,
1417 struct coda_aux_buf *buf)
1418{
1419 if (buf->vaddr) {
1420 dma_free_coherent(&dev->plat_dev->dev, buf->size,
1421 buf->vaddr, buf->paddr);
1422 buf->vaddr = NULL;
1423 buf->size = 0;
1424 }
1425}
1426
1427static void coda_free_framebuffers(struct coda_ctx *ctx)
1428{
1429 int i;
1430
1431 for (i = 0; i < CODA_MAX_FRAMEBUFFERS; i++)
1432 coda_free_aux_buf(ctx->dev, &ctx->internal_frames[i]);
1433}
1434
Philipp Zabelec25f682012-07-20 08:54:29 -03001435static int coda_alloc_framebuffers(struct coda_ctx *ctx, struct coda_q_data *q_data, u32 fourcc)
1436{
1437 struct coda_dev *dev = ctx->dev;
Philipp Zabelec25f682012-07-20 08:54:29 -03001438 int height = q_data->height;
Philipp Zabel86eda902013-05-23 10:42:57 -03001439 dma_addr_t paddr;
1440 int ysize;
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001441 int ret;
Philipp Zabelec25f682012-07-20 08:54:29 -03001442 int i;
1443
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001444 if (ctx->codec && ctx->codec->src_fourcc == V4L2_PIX_FMT_H264)
1445 height = round_up(height, 16);
Philipp Zabel86eda902013-05-23 10:42:57 -03001446 ysize = round_up(q_data->width, 8) * height;
1447
Philipp Zabelec25f682012-07-20 08:54:29 -03001448 /* Allocate frame buffers */
Philipp Zabelec25f682012-07-20 08:54:29 -03001449 for (i = 0; i < ctx->num_internal_frames; i++) {
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001450 size_t size;
1451
1452 size = q_data->sizeimage;
1453 if (ctx->codec->src_fourcc == V4L2_PIX_FMT_H264 &&
1454 dev->devtype->product != CODA_DX6)
Philipp Zabel86eda902013-05-23 10:42:57 -03001455 ctx->internal_frames[i].size += ysize/4;
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001456 ret = coda_alloc_context_buf(ctx, &ctx->internal_frames[i], size);
1457 if (ret < 0) {
Philipp Zabelec25f682012-07-20 08:54:29 -03001458 coda_free_framebuffers(ctx);
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001459 return ret;
Philipp Zabelec25f682012-07-20 08:54:29 -03001460 }
1461 }
1462
1463 /* Register frame buffers in the parameter buffer */
Philipp Zabel86eda902013-05-23 10:42:57 -03001464 for (i = 0; i < ctx->num_internal_frames; i++) {
1465 paddr = ctx->internal_frames[i].paddr;
1466 coda_parabuf_write(ctx, i * 3 + 0, paddr); /* Y */
1467 coda_parabuf_write(ctx, i * 3 + 1, paddr + ysize); /* Cb */
1468 coda_parabuf_write(ctx, i * 3 + 2, paddr + ysize + ysize/4); /* Cr */
Philipp Zabelec25f682012-07-20 08:54:29 -03001469
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001470 /* mvcol buffer for h.264 */
1471 if (ctx->codec->src_fourcc == V4L2_PIX_FMT_H264 &&
1472 dev->devtype->product != CODA_DX6)
1473 coda_parabuf_write(ctx, 96 + i,
1474 ctx->internal_frames[i].paddr +
1475 ysize + ysize/4 + ysize/4);
Philipp Zabelec25f682012-07-20 08:54:29 -03001476 }
1477
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001478 /* mvcol buffer for mpeg4 */
1479 if ((dev->devtype->product != CODA_DX6) &&
1480 (ctx->codec->src_fourcc == V4L2_PIX_FMT_MPEG4))
1481 coda_parabuf_write(ctx, 97, ctx->internal_frames[i].paddr +
1482 ysize + ysize/4 + ysize/4);
1483
Philipp Zabelec25f682012-07-20 08:54:29 -03001484 return 0;
1485}
1486
Javier Martin3f3f5c72012-10-29 05:20:29 -03001487static int coda_h264_padding(int size, char *p)
1488{
Javier Martin3f3f5c72012-10-29 05:20:29 -03001489 int nal_size;
1490 int diff;
1491
Javier Martin832fbb52012-10-29 08:34:59 -03001492 diff = size - (size & ~0x7);
Javier Martin3f3f5c72012-10-29 05:20:29 -03001493 if (diff == 0)
1494 return 0;
1495
Javier Martin832fbb52012-10-29 08:34:59 -03001496 nal_size = coda_filler_size[diff];
Javier Martin3f3f5c72012-10-29 05:20:29 -03001497 memcpy(p, coda_filler_nal, nal_size);
1498
1499 /* Add rbsp stop bit and trailing at the end */
1500 *(p + nal_size - 1) = 0x80;
1501
1502 return nal_size;
1503}
1504
Philipp Zabelc2d22512013-06-21 03:55:28 -03001505static void coda_setup_iram(struct coda_ctx *ctx)
1506{
1507 struct coda_iram_info *iram_info = &ctx->iram_info;
1508 struct coda_dev *dev = ctx->dev;
1509 int ipacdc_size;
1510 int bitram_size;
1511 int dbk_size;
Philipp Zabel8358e762013-06-21 03:55:32 -03001512 int ovl_size;
Philipp Zabelc2d22512013-06-21 03:55:28 -03001513 int mb_width;
1514 int me_size;
1515 int size;
1516
1517 memset(iram_info, 0, sizeof(*iram_info));
1518 size = dev->iram_size;
1519
1520 if (dev->devtype->product == CODA_DX6)
1521 return;
1522
1523 if (ctx->inst_type == CODA_INST_ENCODER) {
1524 struct coda_q_data *q_data_src;
1525
1526 q_data_src = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_OUTPUT);
1527 mb_width = DIV_ROUND_UP(q_data_src->width, 16);
1528
1529 /* Prioritize in case IRAM is too small for everything */
1530 me_size = round_up(round_up(q_data_src->width, 16) * 36 + 2048,
1531 1024);
1532 iram_info->search_ram_size = me_size;
1533 if (size >= iram_info->search_ram_size) {
1534 if (dev->devtype->product == CODA_7541)
1535 iram_info->axi_sram_use |= CODA7_USE_HOST_ME_ENABLE;
1536 iram_info->search_ram_paddr = dev->iram_paddr;
1537 size -= iram_info->search_ram_size;
1538 } else {
1539 pr_err("IRAM is smaller than the search ram size\n");
1540 goto out;
1541 }
1542
1543 /* Only H.264BP and H.263P3 are considered */
1544 dbk_size = round_up(128 * mb_width, 1024);
1545 if (size >= dbk_size) {
1546 iram_info->axi_sram_use |= CODA7_USE_HOST_DBK_ENABLE;
1547 iram_info->buf_dbk_y_use = dev->iram_paddr +
1548 iram_info->search_ram_size;
1549 iram_info->buf_dbk_c_use = iram_info->buf_dbk_y_use +
1550 dbk_size / 2;
1551 size -= dbk_size;
1552 } else {
1553 goto out;
1554 }
1555
1556 bitram_size = round_up(128 * mb_width, 1024);
1557 if (size >= bitram_size) {
1558 iram_info->axi_sram_use |= CODA7_USE_HOST_BIT_ENABLE;
1559 iram_info->buf_bit_use = iram_info->buf_dbk_c_use +
1560 dbk_size / 2;
1561 size -= bitram_size;
1562 } else {
1563 goto out;
1564 }
1565
1566 ipacdc_size = round_up(128 * mb_width, 1024);
1567 if (size >= ipacdc_size) {
1568 iram_info->axi_sram_use |= CODA7_USE_HOST_IP_ENABLE;
1569 iram_info->buf_ip_ac_dc_use = iram_info->buf_bit_use +
1570 bitram_size;
1571 size -= ipacdc_size;
1572 }
1573
Philipp Zabel8358e762013-06-21 03:55:32 -03001574 /* OVL and BTP disabled for encoder */
1575 } else if (ctx->inst_type == CODA_INST_DECODER) {
1576 struct coda_q_data *q_data_dst;
1577 int mb_height;
1578
1579 q_data_dst = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_CAPTURE);
1580 mb_width = DIV_ROUND_UP(q_data_dst->width, 16);
1581 mb_height = DIV_ROUND_UP(q_data_dst->height, 16);
1582
1583 dbk_size = round_up(256 * mb_width, 1024);
1584 if (size >= dbk_size) {
1585 iram_info->axi_sram_use |= CODA7_USE_HOST_DBK_ENABLE;
1586 iram_info->buf_dbk_y_use = dev->iram_paddr;
1587 iram_info->buf_dbk_c_use = dev->iram_paddr +
1588 dbk_size / 2;
1589 size -= dbk_size;
1590 } else {
1591 goto out;
1592 }
1593
1594 bitram_size = round_up(128 * mb_width, 1024);
1595 if (size >= bitram_size) {
1596 iram_info->axi_sram_use |= CODA7_USE_HOST_BIT_ENABLE;
1597 iram_info->buf_bit_use = iram_info->buf_dbk_c_use +
1598 dbk_size / 2;
1599 size -= bitram_size;
1600 } else {
1601 goto out;
1602 }
1603
1604 ipacdc_size = round_up(128 * mb_width, 1024);
1605 if (size >= ipacdc_size) {
1606 iram_info->axi_sram_use |= CODA7_USE_HOST_IP_ENABLE;
1607 iram_info->buf_ip_ac_dc_use = iram_info->buf_bit_use +
1608 bitram_size;
1609 size -= ipacdc_size;
1610 } else {
1611 goto out;
1612 }
1613
1614 ovl_size = round_up(80 * mb_width, 1024);
Philipp Zabelc2d22512013-06-21 03:55:28 -03001615 }
1616
1617out:
1618 switch (dev->devtype->product) {
1619 case CODA_DX6:
1620 break;
1621 case CODA_7541:
1622 /* i.MX53 uses secondary AXI for IRAM access */
1623 if (iram_info->axi_sram_use & CODA7_USE_HOST_BIT_ENABLE)
1624 iram_info->axi_sram_use |= CODA7_USE_BIT_ENABLE;
1625 if (iram_info->axi_sram_use & CODA7_USE_HOST_IP_ENABLE)
1626 iram_info->axi_sram_use |= CODA7_USE_IP_ENABLE;
1627 if (iram_info->axi_sram_use & CODA7_USE_HOST_DBK_ENABLE)
1628 iram_info->axi_sram_use |= CODA7_USE_DBK_ENABLE;
1629 if (iram_info->axi_sram_use & CODA7_USE_HOST_OVL_ENABLE)
1630 iram_info->axi_sram_use |= CODA7_USE_OVL_ENABLE;
1631 if (iram_info->axi_sram_use & CODA7_USE_HOST_ME_ENABLE)
1632 iram_info->axi_sram_use |= CODA7_USE_ME_ENABLE;
1633 }
1634
1635 if (!(iram_info->axi_sram_use & CODA7_USE_HOST_IP_ENABLE))
1636 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
1637 "IRAM smaller than needed\n");
1638
1639 if (dev->devtype->product == CODA_7541) {
1640 /* TODO - Enabling these causes picture errors on CODA7541 */
Philipp Zabel8358e762013-06-21 03:55:32 -03001641 if (ctx->inst_type == CODA_INST_DECODER) {
1642 /* fw 1.4.50 */
1643 iram_info->axi_sram_use &= ~(CODA7_USE_HOST_IP_ENABLE |
1644 CODA7_USE_IP_ENABLE);
1645 } else {
1646 /* fw 13.4.29 */
Philipp Zabelc2d22512013-06-21 03:55:28 -03001647 iram_info->axi_sram_use &= ~(CODA7_USE_HOST_IP_ENABLE |
1648 CODA7_USE_HOST_DBK_ENABLE |
1649 CODA7_USE_IP_ENABLE |
1650 CODA7_USE_DBK_ENABLE);
1651 }
1652 }
1653}
1654
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001655static void coda_free_context_buffers(struct coda_ctx *ctx)
1656{
1657 struct coda_dev *dev = ctx->dev;
1658
Philipp Zabel918c66f2013-06-27 06:59:01 -03001659 coda_free_aux_buf(dev, &ctx->slicebuf);
1660 coda_free_aux_buf(dev, &ctx->psbuf);
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001661 if (dev->devtype->product != CODA_DX6)
1662 coda_free_aux_buf(dev, &ctx->workbuf);
1663}
1664
1665static int coda_alloc_context_buffers(struct coda_ctx *ctx,
1666 struct coda_q_data *q_data)
1667{
1668 struct coda_dev *dev = ctx->dev;
1669 size_t size;
1670 int ret;
1671
1672 switch (dev->devtype->product) {
1673 case CODA_7541:
1674 size = CODA7_WORK_BUF_SIZE;
1675 break;
1676 default:
1677 return 0;
1678 }
1679
Philipp Zabel918c66f2013-06-27 06:59:01 -03001680 if (ctx->psbuf.vaddr) {
1681 v4l2_err(&dev->v4l2_dev, "psmembuf still allocated\n");
1682 return -EBUSY;
1683 }
1684 if (ctx->slicebuf.vaddr) {
1685 v4l2_err(&dev->v4l2_dev, "slicebuf still allocated\n");
1686 return -EBUSY;
1687 }
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001688 if (ctx->workbuf.vaddr) {
1689 v4l2_err(&dev->v4l2_dev, "context buffer still allocated\n");
1690 ret = -EBUSY;
1691 return -ENOMEM;
1692 }
1693
Philipp Zabel918c66f2013-06-27 06:59:01 -03001694 if (q_data->fourcc == V4L2_PIX_FMT_H264) {
1695 /* worst case slice size */
1696 size = (DIV_ROUND_UP(q_data->width, 16) *
1697 DIV_ROUND_UP(q_data->height, 16)) * 3200 / 8 + 512;
1698 ret = coda_alloc_context_buf(ctx, &ctx->slicebuf, size);
1699 if (ret < 0) {
1700 v4l2_err(&dev->v4l2_dev, "failed to allocate %d byte slice buffer",
1701 ctx->slicebuf.size);
1702 return ret;
1703 }
1704 }
1705
1706 if (dev->devtype->product == CODA_7541) {
1707 ret = coda_alloc_context_buf(ctx, &ctx->psbuf, CODA7_PS_BUF_SIZE);
1708 if (ret < 0) {
1709 v4l2_err(&dev->v4l2_dev, "failed to allocate psmem buffer");
1710 goto err;
1711 }
1712 }
1713
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001714 ret = coda_alloc_context_buf(ctx, &ctx->workbuf, size);
1715 if (ret < 0) {
1716 v4l2_err(&dev->v4l2_dev, "failed to allocate %d byte context buffer",
1717 ctx->workbuf.size);
1718 goto err;
1719 }
1720
1721 return 0;
1722
1723err:
1724 coda_free_context_buffers(ctx);
1725 return ret;
1726}
1727
Philipp Zabel918c66f2013-06-27 06:59:01 -03001728static int coda_start_decoding(struct coda_ctx *ctx)
1729{
1730 struct coda_q_data *q_data_src, *q_data_dst;
1731 u32 bitstream_buf, bitstream_size;
1732 struct coda_dev *dev = ctx->dev;
1733 int width, height;
1734 u32 src_fourcc;
1735 u32 val;
1736 int ret;
1737
1738 /* Start decoding */
1739 q_data_src = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_OUTPUT);
1740 q_data_dst = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_CAPTURE);
1741 bitstream_buf = ctx->bitstream.paddr;
1742 bitstream_size = ctx->bitstream.size;
1743 src_fourcc = q_data_src->fourcc;
1744
1745 coda_write(dev, ctx->parabuf.paddr, CODA_REG_BIT_PARA_BUF_ADDR);
1746
1747 /* Update coda bitstream read and write pointers from kfifo */
1748 coda_kfifo_sync_to_device_full(ctx);
1749
1750 ctx->display_idx = -1;
1751 ctx->frm_dis_flg = 0;
1752 coda_write(dev, 0, CODA_REG_BIT_FRM_DIS_FLG(ctx->reg_idx));
1753
1754 coda_write(dev, CODA_BIT_DEC_SEQ_INIT_ESCAPE,
1755 CODA_REG_BIT_BIT_STREAM_PARAM);
1756
1757 coda_write(dev, bitstream_buf, CODA_CMD_DEC_SEQ_BB_START);
1758 coda_write(dev, bitstream_size / 1024, CODA_CMD_DEC_SEQ_BB_SIZE);
1759 val = 0;
1760 if (dev->devtype->product == CODA_7541)
1761 val |= CODA_REORDER_ENABLE;
1762 coda_write(dev, val, CODA_CMD_DEC_SEQ_OPTION);
1763
1764 ctx->params.codec_mode = ctx->codec->mode;
1765 ctx->params.codec_mode_aux = 0;
1766 if (src_fourcc == V4L2_PIX_FMT_H264) {
1767 if (dev->devtype->product == CODA_7541) {
1768 coda_write(dev, ctx->psbuf.paddr,
1769 CODA_CMD_DEC_SEQ_PS_BB_START);
1770 coda_write(dev, (CODA7_PS_BUF_SIZE / 1024),
1771 CODA_CMD_DEC_SEQ_PS_BB_SIZE);
1772 }
1773 }
1774
1775 if (coda_command_sync(ctx, CODA_COMMAND_SEQ_INIT)) {
1776 v4l2_err(&dev->v4l2_dev, "CODA_COMMAND_SEQ_INIT timeout\n");
1777 coda_write(dev, 0, CODA_REG_BIT_BIT_STREAM_PARAM);
1778 return -ETIMEDOUT;
1779 }
1780
1781 /* Update kfifo out pointer from coda bitstream read pointer */
1782 coda_kfifo_sync_from_device(ctx);
1783
1784 coda_write(dev, 0, CODA_REG_BIT_BIT_STREAM_PARAM);
1785
1786 if (coda_read(dev, CODA_RET_DEC_SEQ_SUCCESS) == 0) {
1787 v4l2_err(&dev->v4l2_dev,
1788 "CODA_COMMAND_SEQ_INIT failed, error code = %d\n",
1789 coda_read(dev, CODA_RET_DEC_SEQ_ERR_REASON));
1790 return -EAGAIN;
1791 }
1792
1793 val = coda_read(dev, CODA_RET_DEC_SEQ_SRC_SIZE);
1794 if (dev->devtype->product == CODA_DX6) {
1795 width = (val >> CODADX6_PICWIDTH_OFFSET) & CODADX6_PICWIDTH_MASK;
1796 height = val & CODADX6_PICHEIGHT_MASK;
1797 } else {
1798 width = (val >> CODA7_PICWIDTH_OFFSET) & CODA7_PICWIDTH_MASK;
1799 height = val & CODA7_PICHEIGHT_MASK;
1800 }
1801
1802 if (width > q_data_dst->width || height > q_data_dst->height) {
1803 v4l2_err(&dev->v4l2_dev, "stream is %dx%d, not %dx%d\n",
1804 width, height, q_data_dst->width, q_data_dst->height);
1805 return -EINVAL;
1806 }
1807
1808 width = round_up(width, 16);
1809 height = round_up(height, 16);
1810
1811 v4l2_dbg(1, coda_debug, &dev->v4l2_dev, "%s instance %d now: %dx%d\n",
1812 __func__, ctx->idx, width, height);
1813
1814 ctx->num_internal_frames = coda_read(dev, CODA_RET_DEC_SEQ_FRAME_NEED) + 1;
1815 if (ctx->num_internal_frames > CODA_MAX_FRAMEBUFFERS) {
1816 v4l2_err(&dev->v4l2_dev,
1817 "not enough framebuffers to decode (%d < %d)\n",
1818 CODA_MAX_FRAMEBUFFERS, ctx->num_internal_frames);
1819 return -EINVAL;
1820 }
1821
1822 ret = coda_alloc_framebuffers(ctx, q_data_dst, src_fourcc);
1823 if (ret < 0)
1824 return ret;
1825
1826 /* Tell the decoder how many frame buffers we allocated. */
1827 coda_write(dev, ctx->num_internal_frames, CODA_CMD_SET_FRAME_BUF_NUM);
1828 coda_write(dev, width, CODA_CMD_SET_FRAME_BUF_STRIDE);
1829
1830 if (dev->devtype->product != CODA_DX6) {
1831 /* Set secondary AXI IRAM */
1832 coda_setup_iram(ctx);
1833
1834 coda_write(dev, ctx->iram_info.buf_bit_use,
1835 CODA7_CMD_SET_FRAME_AXI_BIT_ADDR);
1836 coda_write(dev, ctx->iram_info.buf_ip_ac_dc_use,
1837 CODA7_CMD_SET_FRAME_AXI_IPACDC_ADDR);
1838 coda_write(dev, ctx->iram_info.buf_dbk_y_use,
1839 CODA7_CMD_SET_FRAME_AXI_DBKY_ADDR);
1840 coda_write(dev, ctx->iram_info.buf_dbk_c_use,
1841 CODA7_CMD_SET_FRAME_AXI_DBKC_ADDR);
1842 coda_write(dev, ctx->iram_info.buf_ovl_use,
1843 CODA7_CMD_SET_FRAME_AXI_OVL_ADDR);
1844 }
1845
1846 if (src_fourcc == V4L2_PIX_FMT_H264) {
1847 coda_write(dev, ctx->slicebuf.paddr,
1848 CODA_CMD_SET_FRAME_SLICE_BB_START);
1849 coda_write(dev, ctx->slicebuf.size / 1024,
1850 CODA_CMD_SET_FRAME_SLICE_BB_SIZE);
1851 }
1852
1853 if (dev->devtype->product == CODA_7541) {
1854 int max_mb_x = 1920 / 16;
1855 int max_mb_y = 1088 / 16;
1856 int max_mb_num = max_mb_x * max_mb_y;
1857 coda_write(dev, max_mb_num << 16 | max_mb_x << 8 | max_mb_y,
1858 CODA7_CMD_SET_FRAME_MAX_DEC_SIZE);
1859 }
1860
1861 if (coda_command_sync(ctx, CODA_COMMAND_SET_FRAME_BUF)) {
1862 v4l2_err(&ctx->dev->v4l2_dev,
1863 "CODA_COMMAND_SET_FRAME_BUF timeout\n");
1864 return -ETIMEDOUT;
1865 }
1866
1867 return 0;
1868}
1869
Philipp Zabeld35167a2013-05-23 10:42:59 -03001870static int coda_encode_header(struct coda_ctx *ctx, struct vb2_buffer *buf,
1871 int header_code, u8 *header, int *size)
1872{
1873 struct coda_dev *dev = ctx->dev;
1874 int ret;
1875
1876 coda_write(dev, vb2_dma_contig_plane_dma_addr(buf, 0),
1877 CODA_CMD_ENC_HEADER_BB_START);
1878 coda_write(dev, vb2_plane_size(buf, 0), CODA_CMD_ENC_HEADER_BB_SIZE);
1879 coda_write(dev, header_code, CODA_CMD_ENC_HEADER_CODE);
1880 ret = coda_command_sync(ctx, CODA_COMMAND_ENCODE_HEADER);
1881 if (ret < 0) {
1882 v4l2_err(&dev->v4l2_dev, "CODA_COMMAND_ENCODE_HEADER timeout\n");
1883 return ret;
1884 }
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001885 *size = coda_read(dev, CODA_REG_BIT_WR_PTR(ctx->reg_idx)) -
Philipp Zabeld35167a2013-05-23 10:42:59 -03001886 coda_read(dev, CODA_CMD_ENC_HEADER_BB_START);
1887 memcpy(header, vb2_plane_vaddr(buf, 0), *size);
1888
1889 return 0;
1890}
1891
Javier Martin186b2502012-07-26 05:53:35 -03001892static int coda_start_streaming(struct vb2_queue *q, unsigned int count)
1893{
1894 struct coda_ctx *ctx = vb2_get_drv_priv(q);
1895 struct v4l2_device *v4l2_dev = &ctx->dev->v4l2_dev;
1896 u32 bitstream_buf, bitstream_size;
1897 struct coda_dev *dev = ctx->dev;
1898 struct coda_q_data *q_data_src, *q_data_dst;
Javier Martin186b2502012-07-26 05:53:35 -03001899 struct vb2_buffer *buf;
Philipp Zabelec25f682012-07-20 08:54:29 -03001900 u32 dst_fourcc;
Javier Martin186b2502012-07-26 05:53:35 -03001901 u32 value;
Philipp Zabeld35167a2013-05-23 10:42:59 -03001902 int ret = 0;
Javier Martin186b2502012-07-26 05:53:35 -03001903
Philipp Zabelb96904e2013-05-23 10:42:58 -03001904 q_data_src = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_OUTPUT);
Philipp Zabel918c66f2013-06-27 06:59:01 -03001905 if (q->type == V4L2_BUF_TYPE_VIDEO_OUTPUT) {
1906 if (q_data_src->fourcc == V4L2_PIX_FMT_H264) {
1907 if (coda_get_bitstream_payload(ctx) < 512)
1908 return -EINVAL;
1909 } else {
1910 if (count < 1)
1911 return -EINVAL;
1912 }
1913
1914 ctx->streamon_out = 1;
1915
Philipp Zabelb96904e2013-05-23 10:42:58 -03001916 if (coda_format_is_yuv(q_data_src->fourcc))
1917 ctx->inst_type = CODA_INST_ENCODER;
1918 else
1919 ctx->inst_type = CODA_INST_DECODER;
Philipp Zabel918c66f2013-06-27 06:59:01 -03001920 } else {
1921 if (count < 1)
1922 return -EINVAL;
1923
1924 ctx->streamon_cap = 1;
Philipp Zabelb96904e2013-05-23 10:42:58 -03001925 }
Javier Martin186b2502012-07-26 05:53:35 -03001926
Philipp Zabelb96904e2013-05-23 10:42:58 -03001927 /* Don't start the coda unless both queues are on */
1928 if (!(ctx->streamon_out & ctx->streamon_cap))
1929 return 0;
Javier Martin186b2502012-07-26 05:53:35 -03001930
Philipp Zabel918c66f2013-06-27 06:59:01 -03001931 /* Allow device_run with no buffers queued and after streamoff */
1932 v4l2_m2m_set_src_buffered(ctx->m2m_ctx, true);
1933
Philipp Zabelb96904e2013-05-23 10:42:58 -03001934 ctx->gopcounter = ctx->params.gop_size - 1;
Javier Martin186b2502012-07-26 05:53:35 -03001935 buf = v4l2_m2m_next_dst_buf(ctx->m2m_ctx);
1936 bitstream_buf = vb2_dma_contig_plane_dma_addr(buf, 0);
1937 q_data_dst = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_CAPTURE);
1938 bitstream_size = q_data_dst->sizeimage;
Philipp Zabelb96904e2013-05-23 10:42:58 -03001939 dst_fourcc = q_data_dst->fourcc;
Javier Martin186b2502012-07-26 05:53:35 -03001940
Philipp Zabelb96904e2013-05-23 10:42:58 -03001941 ctx->codec = coda_find_codec(ctx->dev, q_data_src->fourcc,
1942 q_data_dst->fourcc);
1943 if (!ctx->codec) {
Javier Martin186b2502012-07-26 05:53:35 -03001944 v4l2_err(v4l2_dev, "couldn't tell instance type.\n");
1945 return -EINVAL;
1946 }
1947
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001948 /* Allocate per-instance buffers */
1949 ret = coda_alloc_context_buffers(ctx, q_data_src);
1950 if (ret < 0)
1951 return ret;
1952
Philipp Zabel918c66f2013-06-27 06:59:01 -03001953 if (ctx->inst_type == CODA_INST_DECODER) {
1954 mutex_lock(&dev->coda_mutex);
1955 ret = coda_start_decoding(ctx);
1956 mutex_unlock(&dev->coda_mutex);
1957 if (ret == -EAGAIN) {
1958 return 0;
1959 } else if (ret < 0) {
1960 return ret;
1961 } else {
1962 ctx->initialized = 1;
1963 return 0;
1964 }
1965 }
1966
Javier Martin186b2502012-07-26 05:53:35 -03001967 if (!coda_is_initialized(dev)) {
1968 v4l2_err(v4l2_dev, "coda is not initialized.\n");
1969 return -EFAULT;
1970 }
Philipp Zabelfcb62822013-05-23 10:43:00 -03001971
1972 mutex_lock(&dev->coda_mutex);
1973
Javier Martin186b2502012-07-26 05:53:35 -03001974 coda_write(dev, ctx->parabuf.paddr, CODA_REG_BIT_PARA_BUF_ADDR);
Philipp Zabel5677e3b2013-06-21 03:55:30 -03001975 coda_write(dev, bitstream_buf, CODA_REG_BIT_RD_PTR(ctx->reg_idx));
1976 coda_write(dev, bitstream_buf, CODA_REG_BIT_WR_PTR(ctx->reg_idx));
Javier Martin186b2502012-07-26 05:53:35 -03001977 switch (dev->devtype->product) {
1978 case CODA_DX6:
1979 coda_write(dev, CODADX6_STREAM_BUF_DYNALLOC_EN |
1980 CODADX6_STREAM_BUF_PIC_RESET, CODA_REG_BIT_STREAM_CTRL);
1981 break;
1982 default:
1983 coda_write(dev, CODA7_STREAM_BUF_DYNALLOC_EN |
1984 CODA7_STREAM_BUF_PIC_RESET, CODA_REG_BIT_STREAM_CTRL);
1985 }
1986
Philipp Zabel10436672012-07-02 09:03:55 -03001987 if (dev->devtype->product == CODA_DX6) {
1988 /* Configure the coda */
1989 coda_write(dev, dev->iram_paddr, CODADX6_REG_BIT_SEARCH_RAM_BASE_ADDR);
1990 }
Javier Martin186b2502012-07-26 05:53:35 -03001991
1992 /* Could set rotation here if needed */
1993 switch (dev->devtype->product) {
1994 case CODA_DX6:
1995 value = (q_data_src->width & CODADX6_PICWIDTH_MASK) << CODADX6_PICWIDTH_OFFSET;
Philipp Zabelb96904e2013-05-23 10:42:58 -03001996 value |= (q_data_src->height & CODADX6_PICHEIGHT_MASK) << CODA_PICHEIGHT_OFFSET;
Javier Martin186b2502012-07-26 05:53:35 -03001997 break;
1998 default:
1999 value = (q_data_src->width & CODA7_PICWIDTH_MASK) << CODA7_PICWIDTH_OFFSET;
Philipp Zabelb96904e2013-05-23 10:42:58 -03002000 value |= (q_data_src->height & CODA7_PICHEIGHT_MASK) << CODA_PICHEIGHT_OFFSET;
Javier Martin186b2502012-07-26 05:53:35 -03002001 }
Javier Martin186b2502012-07-26 05:53:35 -03002002 coda_write(dev, value, CODA_CMD_ENC_SEQ_SRC_SIZE);
2003 coda_write(dev, ctx->params.framerate,
2004 CODA_CMD_ENC_SEQ_SRC_F_RATE);
2005
Philipp Zabelb96904e2013-05-23 10:42:58 -03002006 ctx->params.codec_mode = ctx->codec->mode;
Javier Martin186b2502012-07-26 05:53:35 -03002007 switch (dst_fourcc) {
2008 case V4L2_PIX_FMT_MPEG4:
Javier Martin186b2502012-07-26 05:53:35 -03002009 coda_write(dev, CODA_STD_MPEG4, CODA_CMD_ENC_SEQ_COD_STD);
2010 coda_write(dev, 0, CODA_CMD_ENC_SEQ_MP4_PARA);
2011 break;
2012 case V4L2_PIX_FMT_H264:
Javier Martin186b2502012-07-26 05:53:35 -03002013 coda_write(dev, CODA_STD_H264, CODA_CMD_ENC_SEQ_COD_STD);
2014 coda_write(dev, 0, CODA_CMD_ENC_SEQ_264_PARA);
2015 break;
2016 default:
2017 v4l2_err(v4l2_dev,
2018 "dst format (0x%08x) invalid.\n", dst_fourcc);
Philipp Zabelfcb62822013-05-23 10:43:00 -03002019 ret = -EINVAL;
2020 goto out;
Javier Martin186b2502012-07-26 05:53:35 -03002021 }
2022
Philipp Zabelc566c782012-08-08 11:59:38 -03002023 switch (ctx->params.slice_mode) {
2024 case V4L2_MPEG_VIDEO_MULTI_SLICE_MODE_SINGLE:
2025 value = 0;
2026 break;
2027 case V4L2_MPEG_VIDEO_MULTI_SICE_MODE_MAX_MB:
2028 value = (ctx->params.slice_max_mb & CODA_SLICING_SIZE_MASK) << CODA_SLICING_SIZE_OFFSET;
2029 value |= (1 & CODA_SLICING_UNIT_MASK) << CODA_SLICING_UNIT_OFFSET;
Javier Martin186b2502012-07-26 05:53:35 -03002030 value |= 1 & CODA_SLICING_MODE_MASK;
Philipp Zabelc566c782012-08-08 11:59:38 -03002031 break;
2032 case V4L2_MPEG_VIDEO_MULTI_SICE_MODE_MAX_BYTES:
2033 value = (ctx->params.slice_max_bits & CODA_SLICING_SIZE_MASK) << CODA_SLICING_SIZE_OFFSET;
2034 value |= (0 & CODA_SLICING_UNIT_MASK) << CODA_SLICING_UNIT_OFFSET;
2035 value |= 1 & CODA_SLICING_MODE_MASK;
2036 break;
2037 }
Javier Martin186b2502012-07-26 05:53:35 -03002038 coda_write(dev, value, CODA_CMD_ENC_SEQ_SLICE_MODE);
Philipp Zabelc566c782012-08-08 11:59:38 -03002039 value = ctx->params.gop_size & CODA_GOP_SIZE_MASK;
Javier Martin186b2502012-07-26 05:53:35 -03002040 coda_write(dev, value, CODA_CMD_ENC_SEQ_GOP_SIZE);
2041
2042 if (ctx->params.bitrate) {
2043 /* Rate control enabled */
2044 value = (ctx->params.bitrate & CODA_RATECONTROL_BITRATE_MASK) << CODA_RATECONTROL_BITRATE_OFFSET;
2045 value |= 1 & CODA_RATECONTROL_ENABLE_MASK;
2046 } else {
2047 value = 0;
2048 }
2049 coda_write(dev, value, CODA_CMD_ENC_SEQ_RC_PARA);
2050
2051 coda_write(dev, 0, CODA_CMD_ENC_SEQ_RC_BUF_SIZE);
2052 coda_write(dev, 0, CODA_CMD_ENC_SEQ_INTRA_REFRESH);
2053
2054 coda_write(dev, bitstream_buf, CODA_CMD_ENC_SEQ_BB_START);
2055 coda_write(dev, bitstream_size / 1024, CODA_CMD_ENC_SEQ_BB_SIZE);
2056
2057 /* set default gamma */
2058 value = (CODA_DEFAULT_GAMMA & CODA_GAMMA_MASK) << CODA_GAMMA_OFFSET;
2059 coda_write(dev, value, CODA_CMD_ENC_SEQ_RC_GAMMA);
2060
Philipp Zabelfb1fcf12013-05-23 10:42:53 -03002061 if (CODA_DEFAULT_GAMMA > 0) {
2062 if (dev->devtype->product == CODA_DX6)
2063 value = 1 << CODADX6_OPTION_GAMMA_OFFSET;
2064 else
2065 value = 1 << CODA7_OPTION_GAMMA_OFFSET;
2066 } else {
2067 value = 0;
2068 }
Javier Martin186b2502012-07-26 05:53:35 -03002069 coda_write(dev, value, CODA_CMD_ENC_SEQ_OPTION);
2070
Philipp Zabelc2d22512013-06-21 03:55:28 -03002071 coda_setup_iram(ctx);
2072
Javier Martin186b2502012-07-26 05:53:35 -03002073 if (dst_fourcc == V4L2_PIX_FMT_H264) {
2074 value = (FMO_SLICE_SAVE_BUF_SIZE << 7);
2075 value |= (0 & CODA_FMOPARAM_TYPE_MASK) << CODA_FMOPARAM_TYPE_OFFSET;
2076 value |= 0 & CODA_FMOPARAM_SLICENUM_MASK;
Philipp Zabel10436672012-07-02 09:03:55 -03002077 if (dev->devtype->product == CODA_DX6) {
2078 coda_write(dev, value, CODADX6_CMD_ENC_SEQ_FMO);
2079 } else {
Philipp Zabelc2d22512013-06-21 03:55:28 -03002080 coda_write(dev, ctx->iram_info.search_ram_paddr,
2081 CODA7_CMD_ENC_SEQ_SEARCH_BASE);
2082 coda_write(dev, ctx->iram_info.search_ram_size,
2083 CODA7_CMD_ENC_SEQ_SEARCH_SIZE);
Philipp Zabel10436672012-07-02 09:03:55 -03002084 }
Javier Martin186b2502012-07-26 05:53:35 -03002085 }
2086
Philipp Zabelfcb62822013-05-23 10:43:00 -03002087 ret = coda_command_sync(ctx, CODA_COMMAND_SEQ_INIT);
2088 if (ret < 0) {
Javier Martin186b2502012-07-26 05:53:35 -03002089 v4l2_err(v4l2_dev, "CODA_COMMAND_SEQ_INIT timeout\n");
Philipp Zabelfcb62822013-05-23 10:43:00 -03002090 goto out;
Javier Martin186b2502012-07-26 05:53:35 -03002091 }
2092
Philipp Zabelfcb62822013-05-23 10:43:00 -03002093 if (coda_read(dev, CODA_RET_ENC_SEQ_SUCCESS) == 0) {
2094 v4l2_err(v4l2_dev, "CODA_COMMAND_SEQ_INIT failed\n");
2095 ret = -EFAULT;
2096 goto out;
2097 }
Javier Martin186b2502012-07-26 05:53:35 -03002098
Philipp Zabel20397492013-06-21 03:55:29 -03002099 ctx->num_internal_frames = 2;
Philipp Zabelec25f682012-07-20 08:54:29 -03002100 ret = coda_alloc_framebuffers(ctx, q_data_src, dst_fourcc);
Philipp Zabelfcb62822013-05-23 10:43:00 -03002101 if (ret < 0) {
2102 v4l2_err(v4l2_dev, "failed to allocate framebuffers\n");
2103 goto out;
2104 }
Javier Martin186b2502012-07-26 05:53:35 -03002105
Philipp Zabelec25f682012-07-20 08:54:29 -03002106 coda_write(dev, ctx->num_internal_frames, CODA_CMD_SET_FRAME_BUF_NUM);
Philipp Zabel10436672012-07-02 09:03:55 -03002107 coda_write(dev, round_up(q_data_src->width, 8), CODA_CMD_SET_FRAME_BUF_STRIDE);
Philipp Zabel918c66f2013-06-27 06:59:01 -03002108 if (dev->devtype->product == CODA_7541)
2109 coda_write(dev, round_up(q_data_src->width, 8),
2110 CODA7_CMD_SET_FRAME_SOURCE_BUF_STRIDE);
Philipp Zabel10436672012-07-02 09:03:55 -03002111 if (dev->devtype->product != CODA_DX6) {
Philipp Zabelc2d22512013-06-21 03:55:28 -03002112 coda_write(dev, ctx->iram_info.buf_bit_use,
2113 CODA7_CMD_SET_FRAME_AXI_BIT_ADDR);
2114 coda_write(dev, ctx->iram_info.buf_ip_ac_dc_use,
2115 CODA7_CMD_SET_FRAME_AXI_IPACDC_ADDR);
2116 coda_write(dev, ctx->iram_info.buf_dbk_y_use,
2117 CODA7_CMD_SET_FRAME_AXI_DBKY_ADDR);
2118 coda_write(dev, ctx->iram_info.buf_dbk_c_use,
2119 CODA7_CMD_SET_FRAME_AXI_DBKC_ADDR);
2120 coda_write(dev, ctx->iram_info.buf_ovl_use,
2121 CODA7_CMD_SET_FRAME_AXI_OVL_ADDR);
Philipp Zabel10436672012-07-02 09:03:55 -03002122 }
Philipp Zabelfcb62822013-05-23 10:43:00 -03002123 ret = coda_command_sync(ctx, CODA_COMMAND_SET_FRAME_BUF);
2124 if (ret < 0) {
Javier Martin186b2502012-07-26 05:53:35 -03002125 v4l2_err(v4l2_dev, "CODA_COMMAND_SET_FRAME_BUF timeout\n");
Philipp Zabelfcb62822013-05-23 10:43:00 -03002126 goto out;
Javier Martin186b2502012-07-26 05:53:35 -03002127 }
2128
2129 /* Save stream headers */
2130 buf = v4l2_m2m_next_dst_buf(ctx->m2m_ctx);
2131 switch (dst_fourcc) {
2132 case V4L2_PIX_FMT_H264:
2133 /*
2134 * Get SPS in the first frame and copy it to an
2135 * intermediate buffer.
2136 */
Philipp Zabeld35167a2013-05-23 10:42:59 -03002137 ret = coda_encode_header(ctx, buf, CODA_HEADER_H264_SPS,
2138 &ctx->vpu_header[0][0],
2139 &ctx->vpu_header_size[0]);
2140 if (ret < 0)
2141 goto out;
Javier Martin186b2502012-07-26 05:53:35 -03002142
2143 /*
2144 * Get PPS in the first frame and copy it to an
2145 * intermediate buffer.
2146 */
Philipp Zabeld35167a2013-05-23 10:42:59 -03002147 ret = coda_encode_header(ctx, buf, CODA_HEADER_H264_PPS,
2148 &ctx->vpu_header[1][0],
2149 &ctx->vpu_header_size[1]);
2150 if (ret < 0)
2151 goto out;
2152
Javier Martin3f3f5c72012-10-29 05:20:29 -03002153 /*
2154 * Length of H.264 headers is variable and thus it might not be
2155 * aligned for the coda to append the encoded frame. In that is
2156 * the case a filler NAL must be added to header 2.
2157 */
2158 ctx->vpu_header_size[2] = coda_h264_padding(
2159 (ctx->vpu_header_size[0] +
2160 ctx->vpu_header_size[1]),
2161 ctx->vpu_header[2]);
Javier Martin186b2502012-07-26 05:53:35 -03002162 break;
2163 case V4L2_PIX_FMT_MPEG4:
2164 /*
2165 * Get VOS in the first frame and copy it to an
2166 * intermediate buffer
2167 */
Philipp Zabeld35167a2013-05-23 10:42:59 -03002168 ret = coda_encode_header(ctx, buf, CODA_HEADER_MP4V_VOS,
2169 &ctx->vpu_header[0][0],
2170 &ctx->vpu_header_size[0]);
2171 if (ret < 0)
2172 goto out;
Javier Martin186b2502012-07-26 05:53:35 -03002173
Philipp Zabeld35167a2013-05-23 10:42:59 -03002174 ret = coda_encode_header(ctx, buf, CODA_HEADER_MP4V_VIS,
2175 &ctx->vpu_header[1][0],
2176 &ctx->vpu_header_size[1]);
2177 if (ret < 0)
2178 goto out;
Javier Martin186b2502012-07-26 05:53:35 -03002179
Philipp Zabeld35167a2013-05-23 10:42:59 -03002180 ret = coda_encode_header(ctx, buf, CODA_HEADER_MP4V_VOL,
2181 &ctx->vpu_header[2][0],
2182 &ctx->vpu_header_size[2]);
2183 if (ret < 0)
2184 goto out;
Javier Martin186b2502012-07-26 05:53:35 -03002185 break;
2186 default:
2187 /* No more formats need to save headers at the moment */
2188 break;
2189 }
2190
Philipp Zabeld35167a2013-05-23 10:42:59 -03002191out:
Philipp Zabelfcb62822013-05-23 10:43:00 -03002192 mutex_unlock(&dev->coda_mutex);
Philipp Zabeld35167a2013-05-23 10:42:59 -03002193 return ret;
Javier Martin186b2502012-07-26 05:53:35 -03002194}
2195
2196static int coda_stop_streaming(struct vb2_queue *q)
2197{
2198 struct coda_ctx *ctx = vb2_get_drv_priv(q);
Philipp Zabel2fb57f02012-07-25 09:22:07 -03002199 struct coda_dev *dev = ctx->dev;
Javier Martin186b2502012-07-26 05:53:35 -03002200
2201 if (q->type == V4L2_BUF_TYPE_VIDEO_OUTPUT) {
Philipp Zabel918c66f2013-06-27 06:59:01 -03002202 v4l2_dbg(1, coda_debug, &dev->v4l2_dev,
Javier Martin186b2502012-07-26 05:53:35 -03002203 "%s: output\n", __func__);
Philipp Zabelb96904e2013-05-23 10:42:58 -03002204 ctx->streamon_out = 0;
Philipp Zabel918c66f2013-06-27 06:59:01 -03002205
2206 ctx->bit_stream_param |= CODA_BIT_STREAM_END_FLAG;
2207
2208 ctx->isequence = 0;
Javier Martin186b2502012-07-26 05:53:35 -03002209 } else {
Philipp Zabel918c66f2013-06-27 06:59:01 -03002210 v4l2_dbg(1, coda_debug, &dev->v4l2_dev,
Javier Martin186b2502012-07-26 05:53:35 -03002211 "%s: capture\n", __func__);
Philipp Zabelb96904e2013-05-23 10:42:58 -03002212 ctx->streamon_cap = 0;
Philipp Zabel918c66f2013-06-27 06:59:01 -03002213
2214 ctx->osequence = 0;
Javier Martin186b2502012-07-26 05:53:35 -03002215 }
2216
Philipp Zabel918c66f2013-06-27 06:59:01 -03002217 if (!ctx->streamon_out && !ctx->streamon_cap) {
2218 kfifo_init(&ctx->bitstream_fifo,
2219 ctx->bitstream.vaddr, ctx->bitstream.size);
2220 ctx->runcounter = 0;
Philipp Zabel62bed142012-07-25 10:40:39 -03002221 }
Philipp Zabel62bed142012-07-25 10:40:39 -03002222
Javier Martin186b2502012-07-26 05:53:35 -03002223 return 0;
2224}
2225
2226static struct vb2_ops coda_qops = {
2227 .queue_setup = coda_queue_setup,
2228 .buf_prepare = coda_buf_prepare,
2229 .buf_queue = coda_buf_queue,
2230 .wait_prepare = coda_wait_prepare,
2231 .wait_finish = coda_wait_finish,
2232 .start_streaming = coda_start_streaming,
2233 .stop_streaming = coda_stop_streaming,
2234};
2235
2236static int coda_s_ctrl(struct v4l2_ctrl *ctrl)
2237{
2238 struct coda_ctx *ctx =
2239 container_of(ctrl->handler, struct coda_ctx, ctrls);
2240
2241 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
2242 "s_ctrl: id = %d, val = %d\n", ctrl->id, ctrl->val);
2243
2244 switch (ctrl->id) {
Philipp Zabel8f35c7b2012-07-09 04:25:52 -03002245 case V4L2_CID_HFLIP:
2246 if (ctrl->val)
2247 ctx->params.rot_mode |= CODA_MIR_HOR;
2248 else
2249 ctx->params.rot_mode &= ~CODA_MIR_HOR;
2250 break;
2251 case V4L2_CID_VFLIP:
2252 if (ctrl->val)
2253 ctx->params.rot_mode |= CODA_MIR_VER;
2254 else
2255 ctx->params.rot_mode &= ~CODA_MIR_VER;
2256 break;
Javier Martin186b2502012-07-26 05:53:35 -03002257 case V4L2_CID_MPEG_VIDEO_BITRATE:
2258 ctx->params.bitrate = ctrl->val / 1000;
2259 break;
2260 case V4L2_CID_MPEG_VIDEO_GOP_SIZE:
2261 ctx->params.gop_size = ctrl->val;
2262 break;
2263 case V4L2_CID_MPEG_VIDEO_H264_I_FRAME_QP:
2264 ctx->params.h264_intra_qp = ctrl->val;
2265 break;
2266 case V4L2_CID_MPEG_VIDEO_H264_P_FRAME_QP:
2267 ctx->params.h264_inter_qp = ctrl->val;
2268 break;
2269 case V4L2_CID_MPEG_VIDEO_MPEG4_I_FRAME_QP:
2270 ctx->params.mpeg4_intra_qp = ctrl->val;
2271 break;
2272 case V4L2_CID_MPEG_VIDEO_MPEG4_P_FRAME_QP:
2273 ctx->params.mpeg4_inter_qp = ctrl->val;
2274 break;
2275 case V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MODE:
2276 ctx->params.slice_mode = ctrl->val;
2277 break;
2278 case V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MAX_MB:
2279 ctx->params.slice_max_mb = ctrl->val;
2280 break;
Philipp Zabelc566c782012-08-08 11:59:38 -03002281 case V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MAX_BYTES:
2282 ctx->params.slice_max_bits = ctrl->val * 8;
2283 break;
Javier Martin186b2502012-07-26 05:53:35 -03002284 case V4L2_CID_MPEG_VIDEO_HEADER_MODE:
2285 break;
2286 default:
2287 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
2288 "Invalid control, id=%d, val=%d\n",
2289 ctrl->id, ctrl->val);
2290 return -EINVAL;
2291 }
2292
2293 return 0;
2294}
2295
2296static struct v4l2_ctrl_ops coda_ctrl_ops = {
2297 .s_ctrl = coda_s_ctrl,
2298};
2299
2300static int coda_ctrls_setup(struct coda_ctx *ctx)
2301{
2302 v4l2_ctrl_handler_init(&ctx->ctrls, 9);
2303
2304 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
Philipp Zabel8f35c7b2012-07-09 04:25:52 -03002305 V4L2_CID_HFLIP, 0, 1, 1, 0);
2306 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
2307 V4L2_CID_VFLIP, 0, 1, 1, 0);
2308 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
Javier Martin186b2502012-07-26 05:53:35 -03002309 V4L2_CID_MPEG_VIDEO_BITRATE, 0, 32767000, 1, 0);
2310 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
2311 V4L2_CID_MPEG_VIDEO_GOP_SIZE, 1, 60, 1, 16);
2312 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
2313 V4L2_CID_MPEG_VIDEO_H264_I_FRAME_QP, 1, 51, 1, 25);
2314 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
2315 V4L2_CID_MPEG_VIDEO_H264_P_FRAME_QP, 1, 51, 1, 25);
2316 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
2317 V4L2_CID_MPEG_VIDEO_MPEG4_I_FRAME_QP, 1, 31, 1, 2);
2318 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
2319 V4L2_CID_MPEG_VIDEO_MPEG4_P_FRAME_QP, 1, 31, 1, 2);
2320 v4l2_ctrl_new_std_menu(&ctx->ctrls, &coda_ctrl_ops,
2321 V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MODE,
Philipp Zabelc566c782012-08-08 11:59:38 -03002322 V4L2_MPEG_VIDEO_MULTI_SICE_MODE_MAX_BYTES, 0x0,
2323 V4L2_MPEG_VIDEO_MULTI_SLICE_MODE_SINGLE);
Javier Martin186b2502012-07-26 05:53:35 -03002324 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
2325 V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MAX_MB, 1, 0x3fffffff, 1, 1);
Philipp Zabelc566c782012-08-08 11:59:38 -03002326 v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops,
2327 V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MAX_BYTES, 1, 0x3fffffff, 1, 500);
Javier Martin186b2502012-07-26 05:53:35 -03002328 v4l2_ctrl_new_std_menu(&ctx->ctrls, &coda_ctrl_ops,
2329 V4L2_CID_MPEG_VIDEO_HEADER_MODE,
2330 V4L2_MPEG_VIDEO_HEADER_MODE_JOINED_WITH_1ST_FRAME,
2331 (1 << V4L2_MPEG_VIDEO_HEADER_MODE_SEPARATE),
2332 V4L2_MPEG_VIDEO_HEADER_MODE_JOINED_WITH_1ST_FRAME);
2333
2334 if (ctx->ctrls.error) {
2335 v4l2_err(&ctx->dev->v4l2_dev, "control initialization error (%d)",
2336 ctx->ctrls.error);
2337 return -EINVAL;
2338 }
2339
2340 return v4l2_ctrl_handler_setup(&ctx->ctrls);
2341}
2342
2343static int coda_queue_init(void *priv, struct vb2_queue *src_vq,
2344 struct vb2_queue *dst_vq)
2345{
2346 struct coda_ctx *ctx = priv;
2347 int ret;
2348
Javier Martin186b2502012-07-26 05:53:35 -03002349 src_vq->type = V4L2_BUF_TYPE_VIDEO_OUTPUT;
Philipp Zabel419869c2013-05-23 07:06:30 -03002350 src_vq->io_modes = VB2_DMABUF | VB2_MMAP | VB2_USERPTR;
Javier Martin186b2502012-07-26 05:53:35 -03002351 src_vq->drv_priv = ctx;
2352 src_vq->buf_struct_size = sizeof(struct v4l2_m2m_buffer);
2353 src_vq->ops = &coda_qops;
2354 src_vq->mem_ops = &vb2_dma_contig_memops;
Kamil Debskiccd571c2013-04-24 10:38:24 -03002355 src_vq->timestamp_type = V4L2_BUF_FLAG_TIMESTAMP_COPY;
Javier Martin186b2502012-07-26 05:53:35 -03002356
2357 ret = vb2_queue_init(src_vq);
2358 if (ret)
2359 return ret;
2360
Javier Martin186b2502012-07-26 05:53:35 -03002361 dst_vq->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
Philipp Zabel419869c2013-05-23 07:06:30 -03002362 dst_vq->io_modes = VB2_DMABUF | VB2_MMAP | VB2_USERPTR;
Javier Martin186b2502012-07-26 05:53:35 -03002363 dst_vq->drv_priv = ctx;
2364 dst_vq->buf_struct_size = sizeof(struct v4l2_m2m_buffer);
2365 dst_vq->ops = &coda_qops;
2366 dst_vq->mem_ops = &vb2_dma_contig_memops;
Kamil Debskiccd571c2013-04-24 10:38:24 -03002367 dst_vq->timestamp_type = V4L2_BUF_FLAG_TIMESTAMP_COPY;
Javier Martin186b2502012-07-26 05:53:35 -03002368
2369 return vb2_queue_init(dst_vq);
2370}
2371
Philipp Zabele11f3e62012-07-25 09:16:58 -03002372static int coda_next_free_instance(struct coda_dev *dev)
2373{
2374 return ffz(dev->instance_mask);
2375}
2376
Javier Martin186b2502012-07-26 05:53:35 -03002377static int coda_open(struct file *file)
2378{
2379 struct coda_dev *dev = video_drvdata(file);
2380 struct coda_ctx *ctx = NULL;
Philipp Zabel918c66f2013-06-27 06:59:01 -03002381 int ret;
Philipp Zabele11f3e62012-07-25 09:16:58 -03002382 int idx;
Javier Martin186b2502012-07-26 05:53:35 -03002383
Philipp Zabele11f3e62012-07-25 09:16:58 -03002384 idx = coda_next_free_instance(dev);
2385 if (idx >= CODA_MAX_INSTANCES)
Javier Martin186b2502012-07-26 05:53:35 -03002386 return -EBUSY;
Philipp Zabele11f3e62012-07-25 09:16:58 -03002387 set_bit(idx, &dev->instance_mask);
Javier Martin186b2502012-07-26 05:53:35 -03002388
2389 ctx = kzalloc(sizeof *ctx, GFP_KERNEL);
2390 if (!ctx)
2391 return -ENOMEM;
2392
Philipp Zabel918c66f2013-06-27 06:59:01 -03002393 INIT_WORK(&ctx->skip_run, coda_skip_run);
Javier Martin186b2502012-07-26 05:53:35 -03002394 v4l2_fh_init(&ctx->fh, video_devdata(file));
2395 file->private_data = &ctx->fh;
2396 v4l2_fh_add(&ctx->fh);
2397 ctx->dev = dev;
Philipp Zabele11f3e62012-07-25 09:16:58 -03002398 ctx->idx = idx;
Philipp Zabel5677e3b2013-06-21 03:55:30 -03002399 switch (dev->devtype->product) {
2400 case CODA_7541:
2401 ctx->reg_idx = 0;
2402 break;
2403 default:
2404 ctx->reg_idx = idx;
2405 }
Javier Martin186b2502012-07-26 05:53:35 -03002406 set_default_params(ctx);
2407 ctx->m2m_ctx = v4l2_m2m_ctx_init(dev->m2m_dev, ctx,
2408 &coda_queue_init);
2409 if (IS_ERR(ctx->m2m_ctx)) {
Philipp Zabel72720ff2013-05-21 10:31:25 -03002410 ret = PTR_ERR(ctx->m2m_ctx);
Javier Martin186b2502012-07-26 05:53:35 -03002411
2412 v4l2_err(&dev->v4l2_dev, "%s return error (%d)\n",
2413 __func__, ret);
2414 goto err;
2415 }
2416 ret = coda_ctrls_setup(ctx);
2417 if (ret) {
2418 v4l2_err(&dev->v4l2_dev, "failed to setup coda controls\n");
2419 goto err;
2420 }
2421
2422 ctx->fh.ctrl_handler = &ctx->ctrls;
2423
Philipp Zabel5677e3b2013-06-21 03:55:30 -03002424 ret = coda_alloc_context_buf(ctx, &ctx->parabuf, CODA_PARA_BUF_SIZE);
2425 if (ret < 0) {
Javier Martin186b2502012-07-26 05:53:35 -03002426 v4l2_err(&dev->v4l2_dev, "failed to allocate parabuf");
Javier Martin186b2502012-07-26 05:53:35 -03002427 goto err;
2428 }
2429
Philipp Zabel9082a7c2013-06-21 03:55:31 -03002430 ctx->bitstream.size = CODA_MAX_FRAME_SIZE;
2431 ctx->bitstream.vaddr = dma_alloc_writecombine(&dev->plat_dev->dev,
2432 ctx->bitstream.size, &ctx->bitstream.paddr, GFP_KERNEL);
2433 if (!ctx->bitstream.vaddr) {
2434 v4l2_err(&dev->v4l2_dev, "failed to allocate bitstream ringbuffer");
2435 ret = -ENOMEM;
2436 goto err;
2437 }
2438 kfifo_init(&ctx->bitstream_fifo,
2439 ctx->bitstream.vaddr, ctx->bitstream.size);
2440 mutex_init(&ctx->bitstream_mutex);
Philipp Zabel918c66f2013-06-27 06:59:01 -03002441 mutex_init(&ctx->buffer_mutex);
Philipp Zabel9082a7c2013-06-21 03:55:31 -03002442
Javier Martin186b2502012-07-26 05:53:35 -03002443 coda_lock(ctx);
Philipp Zabele11f3e62012-07-25 09:16:58 -03002444 list_add(&ctx->list, &dev->instances);
Javier Martin186b2502012-07-26 05:53:35 -03002445 coda_unlock(ctx);
2446
2447 clk_prepare_enable(dev->clk_per);
2448 clk_prepare_enable(dev->clk_ahb);
2449
2450 v4l2_dbg(1, coda_debug, &dev->v4l2_dev, "Created instance %d (%p)\n",
2451 ctx->idx, ctx);
2452
2453 return 0;
2454
2455err:
2456 v4l2_fh_del(&ctx->fh);
2457 v4l2_fh_exit(&ctx->fh);
2458 kfree(ctx);
2459 return ret;
2460}
2461
2462static int coda_release(struct file *file)
2463{
2464 struct coda_dev *dev = video_drvdata(file);
2465 struct coda_ctx *ctx = fh_to_ctx(file->private_data);
2466
2467 v4l2_dbg(1, coda_debug, &dev->v4l2_dev, "Releasing instance %p\n",
2468 ctx);
2469
Philipp Zabel918c66f2013-06-27 06:59:01 -03002470 /* If this instance is running, call .job_abort and wait for it to end */
2471 v4l2_m2m_ctx_release(ctx->m2m_ctx);
2472
2473 /* In case the instance was not running, we still need to call SEQ_END */
2474 mutex_lock(&dev->coda_mutex);
2475 v4l2_dbg(1, coda_debug, &dev->v4l2_dev,
2476 "%s: sent command 'SEQ_END' to coda\n", __func__);
2477 if (coda_command_sync(ctx, CODA_COMMAND_SEQ_END)) {
2478 v4l2_err(&dev->v4l2_dev,
2479 "CODA_COMMAND_SEQ_END failed\n");
2480 mutex_unlock(&dev->coda_mutex);
2481 return -ETIMEDOUT;
2482 }
2483 mutex_unlock(&dev->coda_mutex);
2484
2485 coda_free_framebuffers(ctx);
2486
Javier Martin186b2502012-07-26 05:53:35 -03002487 coda_lock(ctx);
Philipp Zabele11f3e62012-07-25 09:16:58 -03002488 list_del(&ctx->list);
Javier Martin186b2502012-07-26 05:53:35 -03002489 coda_unlock(ctx);
2490
Philipp Zabel9082a7c2013-06-21 03:55:31 -03002491 dma_free_writecombine(&dev->plat_dev->dev, ctx->bitstream.size,
2492 ctx->bitstream.vaddr, ctx->bitstream.paddr);
Philipp Zabel5677e3b2013-06-21 03:55:30 -03002493 coda_free_context_buffers(ctx);
2494 if (ctx->dev->devtype->product == CODA_DX6)
2495 coda_free_aux_buf(dev, &ctx->workbuf);
2496
2497 coda_free_aux_buf(dev, &ctx->parabuf);
Javier Martin186b2502012-07-26 05:53:35 -03002498 v4l2_ctrl_handler_free(&ctx->ctrls);
2499 clk_disable_unprepare(dev->clk_per);
2500 clk_disable_unprepare(dev->clk_ahb);
2501 v4l2_fh_del(&ctx->fh);
2502 v4l2_fh_exit(&ctx->fh);
Philipp Zabele11f3e62012-07-25 09:16:58 -03002503 clear_bit(ctx->idx, &dev->instance_mask);
Javier Martin186b2502012-07-26 05:53:35 -03002504 kfree(ctx);
2505
2506 return 0;
2507}
2508
2509static unsigned int coda_poll(struct file *file,
2510 struct poll_table_struct *wait)
2511{
2512 struct coda_ctx *ctx = fh_to_ctx(file->private_data);
2513 int ret;
2514
2515 coda_lock(ctx);
2516 ret = v4l2_m2m_poll(file, ctx->m2m_ctx, wait);
2517 coda_unlock(ctx);
2518 return ret;
2519}
2520
2521static int coda_mmap(struct file *file, struct vm_area_struct *vma)
2522{
2523 struct coda_ctx *ctx = fh_to_ctx(file->private_data);
2524
2525 return v4l2_m2m_mmap(file, ctx->m2m_ctx, vma);
2526}
2527
2528static const struct v4l2_file_operations coda_fops = {
2529 .owner = THIS_MODULE,
2530 .open = coda_open,
2531 .release = coda_release,
2532 .poll = coda_poll,
2533 .unlocked_ioctl = video_ioctl2,
2534 .mmap = coda_mmap,
2535};
2536
Philipp Zabel918c66f2013-06-27 06:59:01 -03002537static void coda_finish_decode(struct coda_ctx *ctx)
2538{
2539 struct coda_dev *dev = ctx->dev;
2540 struct coda_q_data *q_data_src;
2541 struct coda_q_data *q_data_dst;
2542 struct vb2_buffer *dst_buf;
2543 int width, height;
2544 int decoded_idx;
2545 int display_idx;
2546 u32 src_fourcc;
2547 int success;
2548 u32 val;
2549
2550 dst_buf = v4l2_m2m_next_dst_buf(ctx->m2m_ctx);
2551
2552 /* Update kfifo out pointer from coda bitstream read pointer */
2553 coda_kfifo_sync_from_device(ctx);
2554
2555 /*
2556 * in stream-end mode, the read pointer can overshoot the write pointer
2557 * by up to 512 bytes
2558 */
2559 if (ctx->bit_stream_param & CODA_BIT_STREAM_END_FLAG) {
2560 if (coda_get_bitstream_payload(ctx) >= 0x100000 - 512)
2561 kfifo_init(&ctx->bitstream_fifo,
2562 ctx->bitstream.vaddr, ctx->bitstream.size);
2563 }
2564
2565 q_data_src = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_OUTPUT);
2566 src_fourcc = q_data_src->fourcc;
2567
2568 val = coda_read(dev, CODA_RET_DEC_PIC_SUCCESS);
2569 if (val != 1)
2570 pr_err("DEC_PIC_SUCCESS = %d\n", val);
2571
2572 success = val & 0x1;
2573 if (!success)
2574 v4l2_err(&dev->v4l2_dev, "decode failed\n");
2575
2576 if (src_fourcc == V4L2_PIX_FMT_H264) {
2577 if (val & (1 << 3))
2578 v4l2_err(&dev->v4l2_dev,
2579 "insufficient PS buffer space (%d bytes)\n",
2580 ctx->psbuf.size);
2581 if (val & (1 << 2))
2582 v4l2_err(&dev->v4l2_dev,
2583 "insufficient slice buffer space (%d bytes)\n",
2584 ctx->slicebuf.size);
2585 }
2586
2587 val = coda_read(dev, CODA_RET_DEC_PIC_SIZE);
2588 width = (val >> 16) & 0xffff;
2589 height = val & 0xffff;
2590
2591 q_data_dst = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_CAPTURE);
2592
2593 val = coda_read(dev, CODA_RET_DEC_PIC_TYPE);
2594 if ((val & 0x7) == 0) {
2595 dst_buf->v4l2_buf.flags |= V4L2_BUF_FLAG_KEYFRAME;
2596 dst_buf->v4l2_buf.flags &= ~V4L2_BUF_FLAG_PFRAME;
2597 } else {
2598 dst_buf->v4l2_buf.flags |= V4L2_BUF_FLAG_PFRAME;
2599 dst_buf->v4l2_buf.flags &= ~V4L2_BUF_FLAG_KEYFRAME;
2600 }
2601
2602 val = coda_read(dev, CODA_RET_DEC_PIC_ERR_MB);
2603 if (val > 0)
2604 v4l2_err(&dev->v4l2_dev,
2605 "errors in %d macroblocks\n", val);
2606
2607 if (dev->devtype->product == CODA_7541) {
2608 val = coda_read(dev, CODA_RET_DEC_PIC_OPTION);
2609 if (val == 0) {
2610 /* not enough bitstream data */
2611 v4l2_dbg(1, coda_debug, &dev->v4l2_dev,
2612 "prescan failed: %d\n", val);
2613 ctx->prescan_failed = true;
2614 return;
2615 }
2616 }
2617
2618 ctx->frm_dis_flg = coda_read(dev, CODA_REG_BIT_FRM_DIS_FLG(ctx->reg_idx));
2619
2620 /*
2621 * The previous display frame was copied out by the rotator,
2622 * now it can be overwritten again
2623 */
2624 if (ctx->display_idx >= 0 &&
2625 ctx->display_idx < ctx->num_internal_frames) {
2626 ctx->frm_dis_flg &= ~(1 << ctx->display_idx);
2627 coda_write(dev, ctx->frm_dis_flg,
2628 CODA_REG_BIT_FRM_DIS_FLG(ctx->reg_idx));
2629 }
2630
2631 /*
2632 * The index of the last decoded frame, not necessarily in
2633 * display order, and the index of the next display frame.
2634 * The latter could have been decoded in a previous run.
2635 */
2636 decoded_idx = coda_read(dev, CODA_RET_DEC_PIC_CUR_IDX);
2637 display_idx = coda_read(dev, CODA_RET_DEC_PIC_FRAME_IDX);
2638
2639 if (decoded_idx == -1) {
2640 /* no frame was decoded, but we might have a display frame */
2641 if (display_idx < 0 && ctx->display_idx < 0)
2642 ctx->prescan_failed = true;
2643 } else if (decoded_idx == -2) {
2644 /* no frame was decoded, we still return the remaining buffers */
2645 } else if (decoded_idx < 0 || decoded_idx >= ctx->num_internal_frames) {
2646 v4l2_err(&dev->v4l2_dev,
2647 "decoded frame index out of range: %d\n", decoded_idx);
2648 }
2649
2650 if (display_idx == -1) {
2651 /*
2652 * no more frames to be decoded, but there could still
2653 * be rotator output to dequeue
2654 */
2655 ctx->prescan_failed = true;
2656 } else if (display_idx == -3) {
2657 /* possibly prescan failure */
2658 } else if (display_idx < 0 || display_idx >= ctx->num_internal_frames) {
2659 v4l2_err(&dev->v4l2_dev,
2660 "presentation frame index out of range: %d\n",
2661 display_idx);
2662 }
2663
2664 /* If a frame was copied out, return it */
2665 if (ctx->display_idx >= 0 &&
2666 ctx->display_idx < ctx->num_internal_frames) {
2667 dst_buf = v4l2_m2m_dst_buf_remove(ctx->m2m_ctx);
2668 dst_buf->v4l2_buf.sequence = ctx->osequence++;
2669
2670 vb2_set_plane_payload(dst_buf, 0, width * height * 3 / 2);
2671
2672 v4l2_m2m_buf_done(dst_buf, success ? VB2_BUF_STATE_DONE :
2673 VB2_BUF_STATE_ERROR);
2674
2675 v4l2_dbg(1, coda_debug, &dev->v4l2_dev,
2676 "job finished: decoding frame (%d) (%s)\n",
2677 dst_buf->v4l2_buf.sequence,
2678 (dst_buf->v4l2_buf.flags & V4L2_BUF_FLAG_KEYFRAME) ?
2679 "KEYFRAME" : "PFRAME");
2680 } else {
2681 v4l2_dbg(1, coda_debug, &dev->v4l2_dev,
2682 "job finished: no frame decoded\n");
2683 }
2684
2685 /* The rotator will copy the current display frame next time */
2686 ctx->display_idx = display_idx;
2687}
2688
2689static void coda_finish_encode(struct coda_ctx *ctx)
Javier Martin186b2502012-07-26 05:53:35 -03002690{
Philipp Zabelec25f682012-07-20 08:54:29 -03002691 struct vb2_buffer *src_buf, *dst_buf;
Philipp Zabel477c1cf2013-06-21 03:55:33 -03002692 struct coda_dev *dev = ctx->dev;
Javier Martin186b2502012-07-26 05:53:35 -03002693 u32 wr_ptr, start_ptr;
Javier Martin186b2502012-07-26 05:53:35 -03002694
Philipp Zabelec25f682012-07-20 08:54:29 -03002695 src_buf = v4l2_m2m_src_buf_remove(ctx->m2m_ctx);
2696 dst_buf = v4l2_m2m_dst_buf_remove(ctx->m2m_ctx);
Javier Martin186b2502012-07-26 05:53:35 -03002697
2698 /* Get results from the coda */
2699 coda_read(dev, CODA_RET_ENC_PIC_TYPE);
2700 start_ptr = coda_read(dev, CODA_CMD_ENC_PIC_BB_START);
Philipp Zabel5677e3b2013-06-21 03:55:30 -03002701 wr_ptr = coda_read(dev, CODA_REG_BIT_WR_PTR(ctx->reg_idx));
2702
Javier Martin186b2502012-07-26 05:53:35 -03002703 /* Calculate bytesused field */
2704 if (dst_buf->v4l2_buf.sequence == 0) {
Philipp Zabel366108f2013-06-21 03:55:27 -03002705 vb2_set_plane_payload(dst_buf, 0, wr_ptr - start_ptr +
2706 ctx->vpu_header_size[0] +
2707 ctx->vpu_header_size[1] +
2708 ctx->vpu_header_size[2]);
Javier Martin186b2502012-07-26 05:53:35 -03002709 } else {
Philipp Zabel366108f2013-06-21 03:55:27 -03002710 vb2_set_plane_payload(dst_buf, 0, wr_ptr - start_ptr);
Javier Martin186b2502012-07-26 05:53:35 -03002711 }
2712
2713 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev, "frame size = %u\n",
2714 wr_ptr - start_ptr);
2715
2716 coda_read(dev, CODA_RET_ENC_PIC_SLICE_NUM);
2717 coda_read(dev, CODA_RET_ENC_PIC_FLAG);
2718
2719 if (src_buf->v4l2_buf.flags & V4L2_BUF_FLAG_KEYFRAME) {
2720 dst_buf->v4l2_buf.flags |= V4L2_BUF_FLAG_KEYFRAME;
2721 dst_buf->v4l2_buf.flags &= ~V4L2_BUF_FLAG_PFRAME;
2722 } else {
2723 dst_buf->v4l2_buf.flags |= V4L2_BUF_FLAG_PFRAME;
2724 dst_buf->v4l2_buf.flags &= ~V4L2_BUF_FLAG_KEYFRAME;
2725 }
2726
Kamil Debskiccd571c2013-04-24 10:38:24 -03002727 dst_buf->v4l2_buf.timestamp = src_buf->v4l2_buf.timestamp;
2728 dst_buf->v4l2_buf.timecode = src_buf->v4l2_buf.timecode;
2729
Philipp Zabelec25f682012-07-20 08:54:29 -03002730 v4l2_m2m_buf_done(src_buf, VB2_BUF_STATE_DONE);
Javier Martin186b2502012-07-26 05:53:35 -03002731 v4l2_m2m_buf_done(dst_buf, VB2_BUF_STATE_DONE);
2732
2733 ctx->gopcounter--;
2734 if (ctx->gopcounter < 0)
2735 ctx->gopcounter = ctx->params.gop_size - 1;
2736
2737 v4l2_dbg(1, coda_debug, &dev->v4l2_dev,
2738 "job finished: encoding frame (%d) (%s)\n",
2739 dst_buf->v4l2_buf.sequence,
2740 (dst_buf->v4l2_buf.flags & V4L2_BUF_FLAG_KEYFRAME) ?
2741 "KEYFRAME" : "PFRAME");
Philipp Zabel477c1cf2013-06-21 03:55:33 -03002742}
2743
2744static irqreturn_t coda_irq_handler(int irq, void *data)
2745{
2746 struct coda_dev *dev = data;
2747 struct coda_ctx *ctx;
2748
2749 cancel_delayed_work(&dev->timeout);
2750
2751 /* read status register to attend the IRQ */
2752 coda_read(dev, CODA_REG_BIT_INT_STATUS);
2753 coda_write(dev, CODA_REG_BIT_INT_CLEAR_SET,
2754 CODA_REG_BIT_INT_CLEAR);
2755
2756 ctx = v4l2_m2m_get_curr_priv(dev->m2m_dev);
2757 if (ctx == NULL) {
2758 v4l2_err(&dev->v4l2_dev, "Instance released before the end of transaction\n");
2759 mutex_unlock(&dev->coda_mutex);
2760 return IRQ_HANDLED;
2761 }
2762
2763 if (ctx->aborting) {
2764 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
2765 "task has been aborted\n");
Philipp Zabel918c66f2013-06-27 06:59:01 -03002766 goto out;
Philipp Zabel477c1cf2013-06-21 03:55:33 -03002767 }
2768
2769 if (coda_isbusy(ctx->dev)) {
2770 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
2771 "coda is still busy!!!!\n");
2772 return IRQ_NONE;
2773 }
2774
Philipp Zabel918c66f2013-06-27 06:59:01 -03002775 if (ctx->inst_type == CODA_INST_DECODER)
2776 coda_finish_decode(ctx);
2777 else
2778 coda_finish_encode(ctx);
2779
2780out:
2781 if (ctx->aborting || (!ctx->streamon_cap && !ctx->streamon_out)) {
2782 v4l2_dbg(1, coda_debug, &dev->v4l2_dev,
2783 "%s: sent command 'SEQ_END' to coda\n", __func__);
2784 if (coda_command_sync(ctx, CODA_COMMAND_SEQ_END)) {
2785 v4l2_err(&dev->v4l2_dev,
2786 "CODA_COMMAND_SEQ_END failed\n");
2787 }
2788
2789 kfifo_init(&ctx->bitstream_fifo,
2790 ctx->bitstream.vaddr, ctx->bitstream.size);
2791
2792 coda_free_framebuffers(ctx);
2793 coda_free_context_buffers(ctx);
2794 }
Javier Martin186b2502012-07-26 05:53:35 -03002795
Philipp Zabelfcb62822013-05-23 10:43:00 -03002796 mutex_unlock(&dev->coda_mutex);
Philipp Zabel918c66f2013-06-27 06:59:01 -03002797 mutex_unlock(&ctx->buffer_mutex);
Philipp Zabelfcb62822013-05-23 10:43:00 -03002798
Javier Martin186b2502012-07-26 05:53:35 -03002799 v4l2_m2m_job_finish(ctx->dev->m2m_dev, ctx->m2m_ctx);
2800
2801 return IRQ_HANDLED;
2802}
2803
Philipp Zabel2fb57f02012-07-25 09:22:07 -03002804static void coda_timeout(struct work_struct *work)
2805{
2806 struct coda_ctx *ctx;
2807 struct coda_dev *dev = container_of(to_delayed_work(work),
2808 struct coda_dev, timeout);
2809
Philipp Zabel39cc0292013-05-21 10:32:42 -03002810 dev_err(&dev->plat_dev->dev, "CODA PIC_RUN timeout, stopping all streams\n");
Philipp Zabel2fb57f02012-07-25 09:22:07 -03002811
2812 mutex_lock(&dev->dev_mutex);
2813 list_for_each_entry(ctx, &dev->instances, list) {
Philipp Zabel918c66f2013-06-27 06:59:01 -03002814 if (mutex_is_locked(&ctx->buffer_mutex))
2815 mutex_unlock(&ctx->buffer_mutex);
Philipp Zabel2fb57f02012-07-25 09:22:07 -03002816 v4l2_m2m_streamoff(NULL, ctx->m2m_ctx, V4L2_BUF_TYPE_VIDEO_OUTPUT);
2817 v4l2_m2m_streamoff(NULL, ctx->m2m_ctx, V4L2_BUF_TYPE_VIDEO_CAPTURE);
2818 }
2819 mutex_unlock(&dev->dev_mutex);
Philipp Zabelfcb62822013-05-23 10:43:00 -03002820
2821 mutex_unlock(&dev->coda_mutex);
2822 ctx = v4l2_m2m_get_curr_priv(dev->m2m_dev);
2823 v4l2_m2m_job_finish(ctx->dev->m2m_dev, ctx->m2m_ctx);
Philipp Zabel2fb57f02012-07-25 09:22:07 -03002824}
2825
Javier Martin186b2502012-07-26 05:53:35 -03002826static u32 coda_supported_firmwares[] = {
2827 CODA_FIRMWARE_VERNUM(CODA_DX6, 2, 2, 5),
Philipp Zabel5677e3b2013-06-21 03:55:30 -03002828 CODA_FIRMWARE_VERNUM(CODA_7541, 1, 4, 50),
Javier Martin186b2502012-07-26 05:53:35 -03002829};
2830
2831static bool coda_firmware_supported(u32 vernum)
2832{
2833 int i;
2834
2835 for (i = 0; i < ARRAY_SIZE(coda_supported_firmwares); i++)
2836 if (vernum == coda_supported_firmwares[i])
2837 return true;
2838 return false;
2839}
2840
2841static char *coda_product_name(int product)
2842{
2843 static char buf[9];
2844
2845 switch (product) {
2846 case CODA_DX6:
2847 return "CodaDx6";
Philipp Zabeldf1e74c2012-07-02 06:07:10 -03002848 case CODA_7541:
2849 return "CODA7541";
Javier Martin186b2502012-07-26 05:53:35 -03002850 default:
2851 snprintf(buf, sizeof(buf), "(0x%04x)", product);
2852 return buf;
2853 }
2854}
2855
Philipp Zabel87048bb2012-07-02 07:03:43 -03002856static int coda_hw_init(struct coda_dev *dev)
Javier Martin186b2502012-07-26 05:53:35 -03002857{
2858 u16 product, major, minor, release;
2859 u32 data;
2860 u16 *p;
2861 int i;
2862
2863 clk_prepare_enable(dev->clk_per);
2864 clk_prepare_enable(dev->clk_ahb);
2865
Javier Martin186b2502012-07-26 05:53:35 -03002866 /*
2867 * Copy the first CODA_ISRAM_SIZE in the internal SRAM.
Philipp Zabel87048bb2012-07-02 07:03:43 -03002868 * The 16-bit chars in the code buffer are in memory access
2869 * order, re-sort them to CODA order for register download.
Javier Martin186b2502012-07-26 05:53:35 -03002870 * Data in this SRAM survives a reboot.
2871 */
Philipp Zabel87048bb2012-07-02 07:03:43 -03002872 p = (u16 *)dev->codebuf.vaddr;
2873 if (dev->devtype->product == CODA_DX6) {
2874 for (i = 0; i < (CODA_ISRAM_SIZE / 2); i++) {
2875 data = CODA_DOWN_ADDRESS_SET(i) |
2876 CODA_DOWN_DATA_SET(p[i ^ 1]);
2877 coda_write(dev, data, CODA_REG_BIT_CODE_DOWN);
2878 }
2879 } else {
2880 for (i = 0; i < (CODA_ISRAM_SIZE / 2); i++) {
2881 data = CODA_DOWN_ADDRESS_SET(i) |
2882 CODA_DOWN_DATA_SET(p[round_down(i, 4) +
2883 3 - (i % 4)]);
2884 coda_write(dev, data, CODA_REG_BIT_CODE_DOWN);
2885 }
Javier Martin186b2502012-07-26 05:53:35 -03002886 }
Javier Martin186b2502012-07-26 05:53:35 -03002887
Philipp Zabel9acf7692013-05-23 10:42:56 -03002888 /* Clear registers */
2889 for (i = 0; i < 64; i++)
2890 coda_write(dev, 0, CODA_REG_BIT_CODE_BUF_ADDR + i * 4);
2891
Javier Martin186b2502012-07-26 05:53:35 -03002892 /* Tell the BIT where to find everything it needs */
Philipp Zabel5677e3b2013-06-21 03:55:30 -03002893 if (dev->devtype->product == CODA_7541) {
2894 coda_write(dev, dev->tempbuf.paddr,
2895 CODA_REG_BIT_TEMP_BUF_ADDR);
Philipp Zabel918c66f2013-06-27 06:59:01 -03002896 coda_write(dev, 0, CODA_REG_BIT_BIT_STREAM_PARAM);
Philipp Zabel5677e3b2013-06-21 03:55:30 -03002897 } else {
2898 coda_write(dev, dev->workbuf.paddr,
2899 CODA_REG_BIT_WORK_BUF_ADDR);
2900 }
Javier Martin186b2502012-07-26 05:53:35 -03002901 coda_write(dev, dev->codebuf.paddr,
2902 CODA_REG_BIT_CODE_BUF_ADDR);
2903 coda_write(dev, 0, CODA_REG_BIT_CODE_RUN);
2904
2905 /* Set default values */
2906 switch (dev->devtype->product) {
2907 case CODA_DX6:
2908 coda_write(dev, CODADX6_STREAM_BUF_PIC_FLUSH, CODA_REG_BIT_STREAM_CTRL);
2909 break;
2910 default:
2911 coda_write(dev, CODA7_STREAM_BUF_PIC_FLUSH, CODA_REG_BIT_STREAM_CTRL);
2912 }
2913 coda_write(dev, 0, CODA_REG_BIT_FRAME_MEM_CTRL);
Philipp Zabel10436672012-07-02 09:03:55 -03002914
2915 if (dev->devtype->product != CODA_DX6)
2916 coda_write(dev, 0, CODA7_REG_BIT_AXI_SRAM_USE);
2917
Javier Martin186b2502012-07-26 05:53:35 -03002918 coda_write(dev, CODA_INT_INTERRUPT_ENABLE,
2919 CODA_REG_BIT_INT_ENABLE);
2920
2921 /* Reset VPU and start processor */
2922 data = coda_read(dev, CODA_REG_BIT_CODE_RESET);
2923 data |= CODA_REG_RESET_ENABLE;
2924 coda_write(dev, data, CODA_REG_BIT_CODE_RESET);
2925 udelay(10);
2926 data &= ~CODA_REG_RESET_ENABLE;
2927 coda_write(dev, data, CODA_REG_BIT_CODE_RESET);
2928 coda_write(dev, CODA_REG_RUN_ENABLE, CODA_REG_BIT_CODE_RUN);
2929
2930 /* Load firmware */
2931 coda_write(dev, 0, CODA_CMD_FIRMWARE_VERNUM);
2932 coda_write(dev, CODA_REG_BIT_BUSY_FLAG, CODA_REG_BIT_BUSY);
2933 coda_write(dev, 0, CODA_REG_BIT_RUN_INDEX);
2934 coda_write(dev, 0, CODA_REG_BIT_RUN_COD_STD);
2935 coda_write(dev, CODA_COMMAND_FIRMWARE_GET, CODA_REG_BIT_RUN_COMMAND);
2936 if (coda_wait_timeout(dev)) {
2937 clk_disable_unprepare(dev->clk_per);
2938 clk_disable_unprepare(dev->clk_ahb);
2939 v4l2_err(&dev->v4l2_dev, "firmware get command error\n");
2940 return -EIO;
2941 }
2942
2943 /* Check we are compatible with the loaded firmware */
2944 data = coda_read(dev, CODA_CMD_FIRMWARE_VERNUM);
2945 product = CODA_FIRMWARE_PRODUCT(data);
2946 major = CODA_FIRMWARE_MAJOR(data);
2947 minor = CODA_FIRMWARE_MINOR(data);
2948 release = CODA_FIRMWARE_RELEASE(data);
2949
2950 clk_disable_unprepare(dev->clk_per);
2951 clk_disable_unprepare(dev->clk_ahb);
2952
2953 if (product != dev->devtype->product) {
2954 v4l2_err(&dev->v4l2_dev, "Wrong firmware. Hw: %s, Fw: %s,"
2955 " Version: %u.%u.%u\n",
2956 coda_product_name(dev->devtype->product),
2957 coda_product_name(product), major, minor, release);
2958 return -EINVAL;
2959 }
2960
2961 v4l2_info(&dev->v4l2_dev, "Initialized %s.\n",
2962 coda_product_name(product));
2963
2964 if (coda_firmware_supported(data)) {
2965 v4l2_info(&dev->v4l2_dev, "Firmware version: %u.%u.%u\n",
2966 major, minor, release);
2967 } else {
2968 v4l2_warn(&dev->v4l2_dev, "Unsupported firmware version: "
2969 "%u.%u.%u\n", major, minor, release);
2970 }
2971
2972 return 0;
2973}
2974
2975static void coda_fw_callback(const struct firmware *fw, void *context)
2976{
2977 struct coda_dev *dev = context;
2978 struct platform_device *pdev = dev->plat_dev;
2979 int ret;
2980
2981 if (!fw) {
2982 v4l2_err(&dev->v4l2_dev, "firmware request failed\n");
2983 return;
2984 }
2985
2986 /* allocate auxiliary per-device code buffer for the BIT processor */
Philipp Zabel5677e3b2013-06-21 03:55:30 -03002987 ret = coda_alloc_aux_buf(dev, &dev->codebuf, fw->size);
2988 if (ret < 0) {
Javier Martin186b2502012-07-26 05:53:35 -03002989 dev_err(&pdev->dev, "failed to allocate code buffer\n");
2990 return;
2991 }
2992
Philipp Zabel87048bb2012-07-02 07:03:43 -03002993 /* Copy the whole firmware image to the code buffer */
2994 memcpy(dev->codebuf.vaddr, fw->data, fw->size);
2995 release_firmware(fw);
2996
2997 ret = coda_hw_init(dev);
Javier Martin186b2502012-07-26 05:53:35 -03002998 if (ret) {
2999 v4l2_err(&dev->v4l2_dev, "HW initialization failed\n");
3000 return;
3001 }
3002
3003 dev->vfd.fops = &coda_fops,
3004 dev->vfd.ioctl_ops = &coda_ioctl_ops;
3005 dev->vfd.release = video_device_release_empty,
3006 dev->vfd.lock = &dev->dev_mutex;
3007 dev->vfd.v4l2_dev = &dev->v4l2_dev;
Hans Verkuil954f3402012-09-05 06:05:50 -03003008 dev->vfd.vfl_dir = VFL_DIR_M2M;
Javier Martin186b2502012-07-26 05:53:35 -03003009 snprintf(dev->vfd.name, sizeof(dev->vfd.name), "%s", CODA_NAME);
3010 video_set_drvdata(&dev->vfd, dev);
3011
3012 dev->alloc_ctx = vb2_dma_contig_init_ctx(&pdev->dev);
3013 if (IS_ERR(dev->alloc_ctx)) {
3014 v4l2_err(&dev->v4l2_dev, "Failed to alloc vb2 context\n");
3015 return;
3016 }
3017
3018 dev->m2m_dev = v4l2_m2m_init(&coda_m2m_ops);
3019 if (IS_ERR(dev->m2m_dev)) {
3020 v4l2_err(&dev->v4l2_dev, "Failed to init mem2mem device\n");
3021 goto rel_ctx;
3022 }
3023
3024 ret = video_register_device(&dev->vfd, VFL_TYPE_GRABBER, 0);
3025 if (ret) {
3026 v4l2_err(&dev->v4l2_dev, "Failed to register video device\n");
3027 goto rel_m2m;
3028 }
3029 v4l2_info(&dev->v4l2_dev, "codec registered as /dev/video%d\n",
3030 dev->vfd.num);
3031
3032 return;
3033
3034rel_m2m:
3035 v4l2_m2m_release(dev->m2m_dev);
3036rel_ctx:
3037 vb2_dma_contig_cleanup_ctx(dev->alloc_ctx);
3038}
3039
3040static int coda_firmware_request(struct coda_dev *dev)
3041{
3042 char *fw = dev->devtype->firmware;
3043
3044 dev_dbg(&dev->plat_dev->dev, "requesting firmware '%s' for %s\n", fw,
3045 coda_product_name(dev->devtype->product));
3046
3047 return request_firmware_nowait(THIS_MODULE, true,
3048 fw, &dev->plat_dev->dev, GFP_KERNEL, dev, coda_fw_callback);
3049}
3050
3051enum coda_platform {
3052 CODA_IMX27,
Philipp Zabeldf1e74c2012-07-02 06:07:10 -03003053 CODA_IMX53,
Javier Martin186b2502012-07-26 05:53:35 -03003054};
3055
Emil Goodec06d8752012-08-14 17:44:42 -03003056static const struct coda_devtype coda_devdata[] = {
Javier Martin186b2502012-07-26 05:53:35 -03003057 [CODA_IMX27] = {
Philipp Zabelb96904e2013-05-23 10:42:58 -03003058 .firmware = "v4l-codadx6-imx27.bin",
3059 .product = CODA_DX6,
3060 .codecs = codadx6_codecs,
3061 .num_codecs = ARRAY_SIZE(codadx6_codecs),
Javier Martin186b2502012-07-26 05:53:35 -03003062 },
Philipp Zabeldf1e74c2012-07-02 06:07:10 -03003063 [CODA_IMX53] = {
Philipp Zabelb96904e2013-05-23 10:42:58 -03003064 .firmware = "v4l-coda7541-imx53.bin",
3065 .product = CODA_7541,
3066 .codecs = coda7_codecs,
3067 .num_codecs = ARRAY_SIZE(coda7_codecs),
Philipp Zabeldf1e74c2012-07-02 06:07:10 -03003068 },
Javier Martin186b2502012-07-26 05:53:35 -03003069};
3070
3071static struct platform_device_id coda_platform_ids[] = {
3072 { .name = "coda-imx27", .driver_data = CODA_IMX27 },
Fabio Estevam4e44cd02012-10-10 00:07:38 -03003073 { .name = "coda-imx53", .driver_data = CODA_IMX53 },
Javier Martin186b2502012-07-26 05:53:35 -03003074 { /* sentinel */ }
3075};
3076MODULE_DEVICE_TABLE(platform, coda_platform_ids);
3077
3078#ifdef CONFIG_OF
3079static const struct of_device_id coda_dt_ids[] = {
3080 { .compatible = "fsl,imx27-vpu", .data = &coda_platform_ids[CODA_IMX27] },
Philipp Zabeldf1e74c2012-07-02 06:07:10 -03003081 { .compatible = "fsl,imx53-vpu", .data = &coda_devdata[CODA_IMX53] },
Javier Martin186b2502012-07-26 05:53:35 -03003082 { /* sentinel */ }
3083};
3084MODULE_DEVICE_TABLE(of, coda_dt_ids);
3085#endif
3086
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -08003087static int coda_probe(struct platform_device *pdev)
Javier Martin186b2502012-07-26 05:53:35 -03003088{
3089 const struct of_device_id *of_id =
3090 of_match_device(of_match_ptr(coda_dt_ids), &pdev->dev);
3091 const struct platform_device_id *pdev_id;
Philipp Zabel657eee72013-04-29 16:17:14 -07003092 struct coda_platform_data *pdata = pdev->dev.platform_data;
3093 struct device_node *np = pdev->dev.of_node;
3094 struct gen_pool *pool;
Javier Martin186b2502012-07-26 05:53:35 -03003095 struct coda_dev *dev;
3096 struct resource *res;
3097 int ret, irq;
3098
3099 dev = devm_kzalloc(&pdev->dev, sizeof *dev, GFP_KERNEL);
3100 if (!dev) {
3101 dev_err(&pdev->dev, "Not enough memory for %s\n",
3102 CODA_NAME);
3103 return -ENOMEM;
3104 }
3105
3106 spin_lock_init(&dev->irqlock);
Philipp Zabele11f3e62012-07-25 09:16:58 -03003107 INIT_LIST_HEAD(&dev->instances);
Philipp Zabel2fb57f02012-07-25 09:22:07 -03003108 INIT_DELAYED_WORK(&dev->timeout, coda_timeout);
Javier Martin186b2502012-07-26 05:53:35 -03003109
3110 dev->plat_dev = pdev;
3111 dev->clk_per = devm_clk_get(&pdev->dev, "per");
3112 if (IS_ERR(dev->clk_per)) {
3113 dev_err(&pdev->dev, "Could not get per clock\n");
3114 return PTR_ERR(dev->clk_per);
3115 }
3116
3117 dev->clk_ahb = devm_clk_get(&pdev->dev, "ahb");
3118 if (IS_ERR(dev->clk_ahb)) {
3119 dev_err(&pdev->dev, "Could not get ahb clock\n");
3120 return PTR_ERR(dev->clk_ahb);
3121 }
3122
3123 /* Get memory for physical registers */
3124 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
3125 if (res == NULL) {
3126 dev_err(&pdev->dev, "failed to get memory region resource\n");
3127 return -ENOENT;
3128 }
3129
Philipp Zabel611cbbf2013-05-21 04:19:27 -03003130 dev->regs_base = devm_ioremap_resource(&pdev->dev, res);
3131 if (IS_ERR(dev->regs_base))
3132 return PTR_ERR(dev->regs_base);
Javier Martin186b2502012-07-26 05:53:35 -03003133
3134 /* IRQ */
3135 irq = platform_get_irq(pdev, 0);
3136 if (irq < 0) {
3137 dev_err(&pdev->dev, "failed to get irq resource\n");
3138 return -ENOENT;
3139 }
3140
Philipp Zabel918c66f2013-06-27 06:59:01 -03003141 if (devm_request_threaded_irq(&pdev->dev, irq, NULL, coda_irq_handler,
3142 IRQF_ONESHOT, CODA_NAME, dev) < 0) {
Javier Martin186b2502012-07-26 05:53:35 -03003143 dev_err(&pdev->dev, "failed to request irq\n");
3144 return -ENOENT;
3145 }
3146
Philipp Zabel657eee72013-04-29 16:17:14 -07003147 /* Get IRAM pool from device tree or platform data */
3148 pool = of_get_named_gen_pool(np, "iram", 0);
3149 if (!pool && pdata)
3150 pool = dev_get_gen_pool(pdata->iram_dev);
3151 if (!pool) {
3152 dev_err(&pdev->dev, "iram pool not available\n");
3153 return -ENOMEM;
3154 }
3155 dev->iram_pool = pool;
3156
Javier Martin186b2502012-07-26 05:53:35 -03003157 ret = v4l2_device_register(&pdev->dev, &dev->v4l2_dev);
3158 if (ret)
3159 return ret;
3160
3161 mutex_init(&dev->dev_mutex);
Philipp Zabelfcb62822013-05-23 10:43:00 -03003162 mutex_init(&dev->coda_mutex);
Javier Martin186b2502012-07-26 05:53:35 -03003163
3164 pdev_id = of_id ? of_id->data : platform_get_device_id(pdev);
3165
3166 if (of_id) {
3167 dev->devtype = of_id->data;
3168 } else if (pdev_id) {
3169 dev->devtype = &coda_devdata[pdev_id->driver_data];
3170 } else {
3171 v4l2_device_unregister(&dev->v4l2_dev);
3172 return -EINVAL;
3173 }
3174
3175 /* allocate auxiliary per-device buffers for the BIT processor */
3176 switch (dev->devtype->product) {
3177 case CODA_DX6:
Philipp Zabel5677e3b2013-06-21 03:55:30 -03003178 ret = coda_alloc_aux_buf(dev, &dev->workbuf,
3179 CODADX6_WORK_BUF_SIZE);
3180 if (ret < 0) {
3181 dev_err(&pdev->dev, "failed to allocate work buffer\n");
3182 v4l2_device_unregister(&dev->v4l2_dev);
3183 return ret;
3184 }
Javier Martin186b2502012-07-26 05:53:35 -03003185 break;
Philipp Zabel5677e3b2013-06-21 03:55:30 -03003186 case CODA_7541:
3187 dev->tempbuf.size = CODA7_TEMP_BUF_SIZE;
3188 break;
Javier Martin186b2502012-07-26 05:53:35 -03003189 }
Philipp Zabel5677e3b2013-06-21 03:55:30 -03003190 if (dev->tempbuf.size) {
3191 ret = coda_alloc_aux_buf(dev, &dev->tempbuf,
3192 dev->tempbuf.size);
3193 if (ret < 0) {
3194 dev_err(&pdev->dev, "failed to allocate temp buffer\n");
3195 v4l2_device_unregister(&dev->v4l2_dev);
3196 return ret;
3197 }
Javier Martin186b2502012-07-26 05:53:35 -03003198 }
3199
Philipp Zabel918c66f2013-06-27 06:59:01 -03003200 switch (dev->devtype->product) {
3201 case CODA_DX6:
Philipp Zabel657eee72013-04-29 16:17:14 -07003202 dev->iram_size = CODADX6_IRAM_SIZE;
Philipp Zabel918c66f2013-06-27 06:59:01 -03003203 break;
3204 case CODA_7541:
Philipp Zabel657eee72013-04-29 16:17:14 -07003205 dev->iram_size = CODA7_IRAM_SIZE;
Philipp Zabel918c66f2013-06-27 06:59:01 -03003206 break;
3207 }
Philipp Zabel657eee72013-04-29 16:17:14 -07003208 dev->iram_vaddr = gen_pool_alloc(dev->iram_pool, dev->iram_size);
3209 if (!dev->iram_vaddr) {
3210 dev_err(&pdev->dev, "unable to alloc iram\n");
3211 return -ENOMEM;
Philipp Zabel10436672012-07-02 09:03:55 -03003212 }
Philipp Zabel657eee72013-04-29 16:17:14 -07003213 dev->iram_paddr = gen_pool_virt_to_phys(dev->iram_pool,
3214 dev->iram_vaddr);
Philipp Zabel10436672012-07-02 09:03:55 -03003215
Javier Martin186b2502012-07-26 05:53:35 -03003216 platform_set_drvdata(pdev, dev);
3217
3218 return coda_firmware_request(dev);
3219}
3220
3221static int coda_remove(struct platform_device *pdev)
3222{
3223 struct coda_dev *dev = platform_get_drvdata(pdev);
3224
3225 video_unregister_device(&dev->vfd);
3226 if (dev->m2m_dev)
3227 v4l2_m2m_release(dev->m2m_dev);
3228 if (dev->alloc_ctx)
3229 vb2_dma_contig_cleanup_ctx(dev->alloc_ctx);
3230 v4l2_device_unregister(&dev->v4l2_dev);
Philipp Zabel657eee72013-04-29 16:17:14 -07003231 if (dev->iram_vaddr)
3232 gen_pool_free(dev->iram_pool, dev->iram_vaddr, dev->iram_size);
Philipp Zabel5677e3b2013-06-21 03:55:30 -03003233 coda_free_aux_buf(dev, &dev->codebuf);
3234 coda_free_aux_buf(dev, &dev->tempbuf);
3235 coda_free_aux_buf(dev, &dev->workbuf);
Javier Martin186b2502012-07-26 05:53:35 -03003236 return 0;
3237}
3238
3239static struct platform_driver coda_driver = {
3240 .probe = coda_probe,
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -08003241 .remove = coda_remove,
Javier Martin186b2502012-07-26 05:53:35 -03003242 .driver = {
3243 .name = CODA_NAME,
3244 .owner = THIS_MODULE,
3245 .of_match_table = of_match_ptr(coda_dt_ids),
3246 },
3247 .id_table = coda_platform_ids,
3248};
3249
3250module_platform_driver(coda_driver);
3251
3252MODULE_LICENSE("GPL");
3253MODULE_AUTHOR("Javier Martin <javier.martin@vista-silicon.com>");
3254MODULE_DESCRIPTION("Coda multi-standard codec V4L2 driver");