blob: 27e0764e3ac5293b075a12c11e316af82255c7ed [file] [log] [blame]
Philipp Zabel79924ca2014-07-23 12:28:45 -03001/*
2 * Coda multi-standard codec IP - BIT processor functions
3 *
4 * Copyright (C) 2012 Vista Silicon S.L.
5 * Javier Martin, <javier.martin@vista-silicon.com>
6 * Xavier Duret
7 * Copyright (C) 2012-2014 Philipp Zabel, Pengutronix
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 */
14
15#include <linux/clk.h>
16#include <linux/irqreturn.h>
17#include <linux/kernel.h>
18#include <linux/platform_device.h>
19#include <linux/reset.h>
Fabio Estevamc0aaf692014-09-19 08:32:30 -030020#include <linux/slab.h>
Philipp Zabel79924ca2014-07-23 12:28:45 -030021#include <linux/videodev2.h>
22
23#include <media/v4l2-common.h>
24#include <media/v4l2-ctrls.h>
25#include <media/v4l2-fh.h>
26#include <media/v4l2-mem2mem.h>
27#include <media/videobuf2-core.h>
28#include <media/videobuf2-dma-contig.h>
29#include <media/videobuf2-vmalloc.h>
30
31#include "coda.h"
32
33#define CODA7_PS_BUF_SIZE 0x28000
34#define CODA9_PS_SAVE_SIZE (512 * 1024)
35
36#define CODA_DEFAULT_GAMMA 4096
37#define CODA9_DEFAULT_GAMMA 24576 /* 0.75 * 32768 */
38
39static inline int coda_is_initialized(struct coda_dev *dev)
40{
Philipp Zabelf23797b2014-08-06 08:02:23 -030041 return coda_read(dev, CODA_REG_BIT_CUR_PC) != 0;
Philipp Zabel79924ca2014-07-23 12:28:45 -030042}
43
44static inline unsigned long coda_isbusy(struct coda_dev *dev)
45{
46 return coda_read(dev, CODA_REG_BIT_BUSY);
47}
48
49static int coda_wait_timeout(struct coda_dev *dev)
50{
51 unsigned long timeout = jiffies + msecs_to_jiffies(1000);
52
53 while (coda_isbusy(dev)) {
54 if (time_after(jiffies, timeout))
55 return -ETIMEDOUT;
56 }
57 return 0;
58}
59
60static void coda_command_async(struct coda_ctx *ctx, int cmd)
61{
62 struct coda_dev *dev = ctx->dev;
63
64 if (dev->devtype->product == CODA_960 ||
65 dev->devtype->product == CODA_7541) {
66 /* Restore context related registers to CODA */
67 coda_write(dev, ctx->bit_stream_param,
68 CODA_REG_BIT_BIT_STREAM_PARAM);
69 coda_write(dev, ctx->frm_dis_flg,
70 CODA_REG_BIT_FRM_DIS_FLG(ctx->reg_idx));
71 coda_write(dev, ctx->frame_mem_ctrl,
72 CODA_REG_BIT_FRAME_MEM_CTRL);
73 coda_write(dev, ctx->workbuf.paddr, CODA_REG_BIT_WORK_BUF_ADDR);
74 }
75
76 if (dev->devtype->product == CODA_960) {
77 coda_write(dev, 1, CODA9_GDI_WPROT_ERR_CLR);
78 coda_write(dev, 0, CODA9_GDI_WPROT_RGN_EN);
79 }
80
81 coda_write(dev, CODA_REG_BIT_BUSY_FLAG, CODA_REG_BIT_BUSY);
82
83 coda_write(dev, ctx->idx, CODA_REG_BIT_RUN_INDEX);
84 coda_write(dev, ctx->params.codec_mode, CODA_REG_BIT_RUN_COD_STD);
85 coda_write(dev, ctx->params.codec_mode_aux, CODA7_REG_BIT_RUN_AUX_STD);
86
87 coda_write(dev, cmd, CODA_REG_BIT_RUN_COMMAND);
88}
89
90static int coda_command_sync(struct coda_ctx *ctx, int cmd)
91{
92 struct coda_dev *dev = ctx->dev;
93
94 coda_command_async(ctx, cmd);
95 return coda_wait_timeout(dev);
96}
97
98int coda_hw_reset(struct coda_ctx *ctx)
99{
100 struct coda_dev *dev = ctx->dev;
101 unsigned long timeout;
102 unsigned int idx;
103 int ret;
104
105 if (!dev->rstc)
106 return -ENOENT;
107
108 idx = coda_read(dev, CODA_REG_BIT_RUN_INDEX);
109
110 if (dev->devtype->product == CODA_960) {
111 timeout = jiffies + msecs_to_jiffies(100);
112 coda_write(dev, 0x11, CODA9_GDI_BUS_CTRL);
113 while (coda_read(dev, CODA9_GDI_BUS_STATUS) != 0x77) {
114 if (time_after(jiffies, timeout))
115 return -ETIME;
116 cpu_relax();
117 }
118 }
119
120 ret = reset_control_reset(dev->rstc);
121 if (ret < 0)
122 return ret;
123
124 if (dev->devtype->product == CODA_960)
125 coda_write(dev, 0x00, CODA9_GDI_BUS_CTRL);
126 coda_write(dev, CODA_REG_BIT_BUSY_FLAG, CODA_REG_BIT_BUSY);
127 coda_write(dev, CODA_REG_RUN_ENABLE, CODA_REG_BIT_CODE_RUN);
128 ret = coda_wait_timeout(dev);
129 coda_write(dev, idx, CODA_REG_BIT_RUN_INDEX);
130
131 return ret;
132}
133
134static void coda_kfifo_sync_from_device(struct coda_ctx *ctx)
135{
136 struct __kfifo *kfifo = &ctx->bitstream_fifo.kfifo;
137 struct coda_dev *dev = ctx->dev;
138 u32 rd_ptr;
139
140 rd_ptr = coda_read(dev, CODA_REG_BIT_RD_PTR(ctx->reg_idx));
141 kfifo->out = (kfifo->in & ~kfifo->mask) |
142 (rd_ptr - ctx->bitstream.paddr);
143 if (kfifo->out > kfifo->in)
144 kfifo->out -= kfifo->mask + 1;
145}
146
147static void coda_kfifo_sync_to_device_full(struct coda_ctx *ctx)
148{
149 struct __kfifo *kfifo = &ctx->bitstream_fifo.kfifo;
150 struct coda_dev *dev = ctx->dev;
151 u32 rd_ptr, wr_ptr;
152
153 rd_ptr = ctx->bitstream.paddr + (kfifo->out & kfifo->mask);
154 coda_write(dev, rd_ptr, CODA_REG_BIT_RD_PTR(ctx->reg_idx));
155 wr_ptr = ctx->bitstream.paddr + (kfifo->in & kfifo->mask);
156 coda_write(dev, wr_ptr, CODA_REG_BIT_WR_PTR(ctx->reg_idx));
157}
158
159static void coda_kfifo_sync_to_device_write(struct coda_ctx *ctx)
160{
161 struct __kfifo *kfifo = &ctx->bitstream_fifo.kfifo;
162 struct coda_dev *dev = ctx->dev;
163 u32 wr_ptr;
164
165 wr_ptr = ctx->bitstream.paddr + (kfifo->in & kfifo->mask);
166 coda_write(dev, wr_ptr, CODA_REG_BIT_WR_PTR(ctx->reg_idx));
167}
168
Philipp Zabelf23797b2014-08-06 08:02:23 -0300169static int coda_bitstream_queue(struct coda_ctx *ctx,
170 struct vb2_buffer *src_buf)
Philipp Zabel79924ca2014-07-23 12:28:45 -0300171{
172 u32 src_size = vb2_get_plane_payload(src_buf, 0);
173 u32 n;
174
Philipp Zabelf23797b2014-08-06 08:02:23 -0300175 n = kfifo_in(&ctx->bitstream_fifo, vb2_plane_vaddr(src_buf, 0),
176 src_size);
Philipp Zabel79924ca2014-07-23 12:28:45 -0300177 if (n < src_size)
178 return -ENOSPC;
179
Philipp Zabelf23797b2014-08-06 08:02:23 -0300180 dma_sync_single_for_device(&ctx->dev->plat_dev->dev,
181 ctx->bitstream.paddr, ctx->bitstream.size,
182 DMA_TO_DEVICE);
Philipp Zabel79924ca2014-07-23 12:28:45 -0300183
184 src_buf->v4l2_buf.sequence = ctx->qsequence++;
185
186 return 0;
187}
188
189static bool coda_bitstream_try_queue(struct coda_ctx *ctx,
190 struct vb2_buffer *src_buf)
191{
192 int ret;
193
194 if (coda_get_bitstream_payload(ctx) +
195 vb2_get_plane_payload(src_buf, 0) + 512 >= ctx->bitstream.size)
196 return false;
197
198 if (vb2_plane_vaddr(src_buf, 0) == NULL) {
199 v4l2_err(&ctx->dev->v4l2_dev, "trying to queue empty buffer\n");
200 return true;
201 }
202
203 ret = coda_bitstream_queue(ctx, src_buf);
204 if (ret < 0) {
205 v4l2_err(&ctx->dev->v4l2_dev, "bitstream buffer overflow\n");
206 return false;
207 }
208 /* Sync read pointer to device */
209 if (ctx == v4l2_m2m_get_curr_priv(ctx->dev->m2m_dev))
210 coda_kfifo_sync_to_device_write(ctx);
211
212 ctx->hold = false;
213
214 return true;
215}
216
217void coda_fill_bitstream(struct coda_ctx *ctx)
218{
219 struct vb2_buffer *src_buf;
Philipp Zabel7cbb1052014-10-02 14:08:32 -0300220 struct coda_buffer_meta *meta;
221 u32 start;
Philipp Zabel79924ca2014-07-23 12:28:45 -0300222
223 while (v4l2_m2m_num_src_bufs_ready(ctx->fh.m2m_ctx) > 0) {
224 src_buf = v4l2_m2m_next_src_buf(ctx->fh.m2m_ctx);
225
Philipp Zabel7cbb1052014-10-02 14:08:32 -0300226 /* Buffer start position */
227 start = ctx->bitstream_fifo.kfifo.in &
228 ctx->bitstream_fifo.kfifo.mask;
229
Philipp Zabel79924ca2014-07-23 12:28:45 -0300230 if (coda_bitstream_try_queue(ctx, src_buf)) {
231 /*
232 * Source buffer is queued in the bitstream ringbuffer;
233 * queue the timestamp and mark source buffer as done
234 */
235 src_buf = v4l2_m2m_src_buf_remove(ctx->fh.m2m_ctx);
236
Philipp Zabel7cbb1052014-10-02 14:08:32 -0300237 meta = kmalloc(sizeof(*meta), GFP_KERNEL);
238 if (meta) {
239 meta->sequence = src_buf->v4l2_buf.sequence;
240 meta->timecode = src_buf->v4l2_buf.timecode;
241 meta->timestamp = src_buf->v4l2_buf.timestamp;
242 meta->start = start;
243 meta->end = ctx->bitstream_fifo.kfifo.in &
244 ctx->bitstream_fifo.kfifo.mask;
245 list_add_tail(&meta->list,
246 &ctx->buffer_meta_list);
Philipp Zabel79924ca2014-07-23 12:28:45 -0300247 }
248
249 v4l2_m2m_buf_done(src_buf, VB2_BUF_STATE_DONE);
250 } else {
251 break;
252 }
253 }
254}
255
256void coda_bit_stream_end_flag(struct coda_ctx *ctx)
257{
258 struct coda_dev *dev = ctx->dev;
259
260 ctx->bit_stream_param |= CODA_BIT_STREAM_END_FLAG;
261
Philipp Zabelf23797b2014-08-06 08:02:23 -0300262 /* If this context is currently running, update the hardware flag */
Philipp Zabel79924ca2014-07-23 12:28:45 -0300263 if ((dev->devtype->product == CODA_960) &&
264 coda_isbusy(dev) &&
265 (ctx->idx == coda_read(dev, CODA_REG_BIT_RUN_INDEX))) {
Philipp Zabelf23797b2014-08-06 08:02:23 -0300266 coda_write(dev, ctx->bit_stream_param,
267 CODA_REG_BIT_BIT_STREAM_PARAM);
Philipp Zabel79924ca2014-07-23 12:28:45 -0300268 }
269}
270
271static void coda_parabuf_write(struct coda_ctx *ctx, int index, u32 value)
272{
273 struct coda_dev *dev = ctx->dev;
274 u32 *p = ctx->parabuf.vaddr;
275
276 if (dev->devtype->product == CODA_DX6)
277 p[index] = value;
278 else
279 p[index ^ 1] = value;
280}
281
282static void coda_free_framebuffers(struct coda_ctx *ctx)
283{
284 int i;
285
286 for (i = 0; i < CODA_MAX_FRAMEBUFFERS; i++)
287 coda_free_aux_buf(ctx->dev, &ctx->internal_frames[i]);
288}
289
290static int coda_alloc_framebuffers(struct coda_ctx *ctx,
291 struct coda_q_data *q_data, u32 fourcc)
292{
293 struct coda_dev *dev = ctx->dev;
294 int width, height;
295 dma_addr_t paddr;
296 int ysize;
297 int ret;
298 int i;
299
300 if (ctx->codec && (ctx->codec->src_fourcc == V4L2_PIX_FMT_H264 ||
301 ctx->codec->dst_fourcc == V4L2_PIX_FMT_H264)) {
302 width = round_up(q_data->width, 16);
303 height = round_up(q_data->height, 16);
304 } else {
305 width = round_up(q_data->width, 8);
306 height = q_data->height;
307 }
308 ysize = width * height;
309
310 /* Allocate frame buffers */
311 for (i = 0; i < ctx->num_internal_frames; i++) {
312 size_t size;
313 char *name;
314
315 size = ysize + ysize / 2;
316 if (ctx->codec->src_fourcc == V4L2_PIX_FMT_H264 &&
317 dev->devtype->product != CODA_DX6)
318 size += ysize / 4;
319 name = kasprintf(GFP_KERNEL, "fb%d", i);
320 ret = coda_alloc_context_buf(ctx, &ctx->internal_frames[i],
321 size, name);
322 kfree(name);
323 if (ret < 0) {
324 coda_free_framebuffers(ctx);
325 return ret;
326 }
327 }
328
329 /* Register frame buffers in the parameter buffer */
330 for (i = 0; i < ctx->num_internal_frames; i++) {
331 paddr = ctx->internal_frames[i].paddr;
Philipp Zabelf23797b2014-08-06 08:02:23 -0300332 /* Start addresses of Y, Cb, Cr planes */
333 coda_parabuf_write(ctx, i * 3 + 0, paddr);
334 coda_parabuf_write(ctx, i * 3 + 1, paddr + ysize);
335 coda_parabuf_write(ctx, i * 3 + 2, paddr + ysize + ysize / 4);
Philipp Zabel79924ca2014-07-23 12:28:45 -0300336
337 /* mvcol buffer for h.264 */
338 if (ctx->codec->src_fourcc == V4L2_PIX_FMT_H264 &&
339 dev->devtype->product != CODA_DX6)
340 coda_parabuf_write(ctx, 96 + i,
341 ctx->internal_frames[i].paddr +
342 ysize + ysize/4 + ysize/4);
343 }
344
345 /* mvcol buffer for mpeg4 */
346 if ((dev->devtype->product != CODA_DX6) &&
347 (ctx->codec->src_fourcc == V4L2_PIX_FMT_MPEG4))
348 coda_parabuf_write(ctx, 97, ctx->internal_frames[i].paddr +
349 ysize + ysize/4 + ysize/4);
350
351 return 0;
352}
353
354static void coda_free_context_buffers(struct coda_ctx *ctx)
355{
356 struct coda_dev *dev = ctx->dev;
357
358 coda_free_aux_buf(dev, &ctx->slicebuf);
359 coda_free_aux_buf(dev, &ctx->psbuf);
360 if (dev->devtype->product != CODA_DX6)
361 coda_free_aux_buf(dev, &ctx->workbuf);
362}
363
364static int coda_alloc_context_buffers(struct coda_ctx *ctx,
365 struct coda_q_data *q_data)
366{
367 struct coda_dev *dev = ctx->dev;
368 size_t size;
369 int ret;
370
371 if (dev->devtype->product == CODA_DX6)
372 return 0;
373
374 if (ctx->psbuf.vaddr) {
375 v4l2_err(&dev->v4l2_dev, "psmembuf still allocated\n");
376 return -EBUSY;
377 }
378 if (ctx->slicebuf.vaddr) {
379 v4l2_err(&dev->v4l2_dev, "slicebuf still allocated\n");
380 return -EBUSY;
381 }
382 if (ctx->workbuf.vaddr) {
383 v4l2_err(&dev->v4l2_dev, "context buffer still allocated\n");
384 ret = -EBUSY;
385 return -ENOMEM;
386 }
387
388 if (q_data->fourcc == V4L2_PIX_FMT_H264) {
389 /* worst case slice size */
390 size = (DIV_ROUND_UP(q_data->width, 16) *
391 DIV_ROUND_UP(q_data->height, 16)) * 3200 / 8 + 512;
Philipp Zabelf23797b2014-08-06 08:02:23 -0300392 ret = coda_alloc_context_buf(ctx, &ctx->slicebuf, size,
393 "slicebuf");
Philipp Zabel79924ca2014-07-23 12:28:45 -0300394 if (ret < 0) {
Philipp Zabelf23797b2014-08-06 08:02:23 -0300395 v4l2_err(&dev->v4l2_dev,
396 "failed to allocate %d byte slice buffer",
Philipp Zabel79924ca2014-07-23 12:28:45 -0300397 ctx->slicebuf.size);
398 return ret;
399 }
400 }
401
402 if (dev->devtype->product == CODA_7541) {
Philipp Zabelf23797b2014-08-06 08:02:23 -0300403 ret = coda_alloc_context_buf(ctx, &ctx->psbuf,
404 CODA7_PS_BUF_SIZE, "psbuf");
Philipp Zabel79924ca2014-07-23 12:28:45 -0300405 if (ret < 0) {
Philipp Zabelf23797b2014-08-06 08:02:23 -0300406 v4l2_err(&dev->v4l2_dev,
407 "failed to allocate psmem buffer");
Philipp Zabel79924ca2014-07-23 12:28:45 -0300408 goto err;
409 }
410 }
411
412 size = dev->devtype->workbuf_size;
413 if (dev->devtype->product == CODA_960 &&
414 q_data->fourcc == V4L2_PIX_FMT_H264)
415 size += CODA9_PS_SAVE_SIZE;
416 ret = coda_alloc_context_buf(ctx, &ctx->workbuf, size, "workbuf");
417 if (ret < 0) {
Philipp Zabelf23797b2014-08-06 08:02:23 -0300418 v4l2_err(&dev->v4l2_dev,
419 "failed to allocate %d byte context buffer",
Philipp Zabel79924ca2014-07-23 12:28:45 -0300420 ctx->workbuf.size);
421 goto err;
422 }
423
424 return 0;
425
426err:
427 coda_free_context_buffers(ctx);
428 return ret;
429}
430
431static int coda_encode_header(struct coda_ctx *ctx, struct vb2_buffer *buf,
432 int header_code, u8 *header, int *size)
433{
434 struct coda_dev *dev = ctx->dev;
435 size_t bufsize;
436 int ret;
437 int i;
438
439 if (dev->devtype->product == CODA_960)
440 memset(vb2_plane_vaddr(buf, 0), 0, 64);
441
442 coda_write(dev, vb2_dma_contig_plane_dma_addr(buf, 0),
443 CODA_CMD_ENC_HEADER_BB_START);
444 bufsize = vb2_plane_size(buf, 0);
445 if (dev->devtype->product == CODA_960)
446 bufsize /= 1024;
447 coda_write(dev, bufsize, CODA_CMD_ENC_HEADER_BB_SIZE);
448 coda_write(dev, header_code, CODA_CMD_ENC_HEADER_CODE);
449 ret = coda_command_sync(ctx, CODA_COMMAND_ENCODE_HEADER);
450 if (ret < 0) {
451 v4l2_err(&dev->v4l2_dev, "CODA_COMMAND_ENCODE_HEADER timeout\n");
452 return ret;
453 }
454
455 if (dev->devtype->product == CODA_960) {
456 for (i = 63; i > 0; i--)
457 if (((char *)vb2_plane_vaddr(buf, 0))[i] != 0)
458 break;
459 *size = i + 1;
460 } else {
461 *size = coda_read(dev, CODA_REG_BIT_WR_PTR(ctx->reg_idx)) -
462 coda_read(dev, CODA_CMD_ENC_HEADER_BB_START);
463 }
464 memcpy(header, vb2_plane_vaddr(buf, 0), *size);
465
466 return 0;
467}
468
469static phys_addr_t coda_iram_alloc(struct coda_iram_info *iram, size_t size)
470{
471 phys_addr_t ret;
472
473 size = round_up(size, 1024);
474 if (size > iram->remaining)
475 return 0;
476 iram->remaining -= size;
477
478 ret = iram->next_paddr;
479 iram->next_paddr += size;
480
481 return ret;
482}
483
484static void coda_setup_iram(struct coda_ctx *ctx)
485{
486 struct coda_iram_info *iram_info = &ctx->iram_info;
487 struct coda_dev *dev = ctx->dev;
Philipp Zabelf23797b2014-08-06 08:02:23 -0300488 int w64, w128;
Philipp Zabel79924ca2014-07-23 12:28:45 -0300489 int mb_width;
490 int dbk_bits;
491 int bit_bits;
492 int ip_bits;
493
494 memset(iram_info, 0, sizeof(*iram_info));
495 iram_info->next_paddr = dev->iram.paddr;
496 iram_info->remaining = dev->iram.size;
497
Philipp Zabel8be31c82014-08-05 14:00:13 -0300498 if (!dev->iram.vaddr)
499 return;
500
Philipp Zabel79924ca2014-07-23 12:28:45 -0300501 switch (dev->devtype->product) {
502 case CODA_7541:
503 dbk_bits = CODA7_USE_HOST_DBK_ENABLE | CODA7_USE_DBK_ENABLE;
504 bit_bits = CODA7_USE_HOST_BIT_ENABLE | CODA7_USE_BIT_ENABLE;
505 ip_bits = CODA7_USE_HOST_IP_ENABLE | CODA7_USE_IP_ENABLE;
506 break;
507 case CODA_960:
508 dbk_bits = CODA9_USE_HOST_DBK_ENABLE | CODA9_USE_DBK_ENABLE;
509 bit_bits = CODA9_USE_HOST_BIT_ENABLE | CODA7_USE_BIT_ENABLE;
510 ip_bits = CODA9_USE_HOST_IP_ENABLE | CODA7_USE_IP_ENABLE;
511 break;
512 default: /* CODA_DX6 */
513 return;
514 }
515
516 if (ctx->inst_type == CODA_INST_ENCODER) {
517 struct coda_q_data *q_data_src;
518
519 q_data_src = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_OUTPUT);
520 mb_width = DIV_ROUND_UP(q_data_src->width, 16);
Philipp Zabelf23797b2014-08-06 08:02:23 -0300521 w128 = mb_width * 128;
522 w64 = mb_width * 64;
Philipp Zabel79924ca2014-07-23 12:28:45 -0300523
524 /* Prioritize in case IRAM is too small for everything */
525 if (dev->devtype->product == CODA_7541) {
526 iram_info->search_ram_size = round_up(mb_width * 16 *
527 36 + 2048, 1024);
528 iram_info->search_ram_paddr = coda_iram_alloc(iram_info,
Philipp Zabelf23797b2014-08-06 08:02:23 -0300529 iram_info->search_ram_size);
Philipp Zabel79924ca2014-07-23 12:28:45 -0300530 if (!iram_info->search_ram_paddr) {
531 pr_err("IRAM is smaller than the search ram size\n");
532 goto out;
533 }
534 iram_info->axi_sram_use |= CODA7_USE_HOST_ME_ENABLE |
535 CODA7_USE_ME_ENABLE;
536 }
537
538 /* Only H.264BP and H.263P3 are considered */
Philipp Zabelf23797b2014-08-06 08:02:23 -0300539 iram_info->buf_dbk_y_use = coda_iram_alloc(iram_info, w64);
540 iram_info->buf_dbk_c_use = coda_iram_alloc(iram_info, w64);
Philipp Zabel79924ca2014-07-23 12:28:45 -0300541 if (!iram_info->buf_dbk_c_use)
542 goto out;
543 iram_info->axi_sram_use |= dbk_bits;
544
Philipp Zabelf23797b2014-08-06 08:02:23 -0300545 iram_info->buf_bit_use = coda_iram_alloc(iram_info, w128);
Philipp Zabel79924ca2014-07-23 12:28:45 -0300546 if (!iram_info->buf_bit_use)
547 goto out;
548 iram_info->axi_sram_use |= bit_bits;
549
Philipp Zabelf23797b2014-08-06 08:02:23 -0300550 iram_info->buf_ip_ac_dc_use = coda_iram_alloc(iram_info, w128);
Philipp Zabel79924ca2014-07-23 12:28:45 -0300551 if (!iram_info->buf_ip_ac_dc_use)
552 goto out;
553 iram_info->axi_sram_use |= ip_bits;
554
555 /* OVL and BTP disabled for encoder */
556 } else if (ctx->inst_type == CODA_INST_DECODER) {
557 struct coda_q_data *q_data_dst;
558
559 q_data_dst = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_CAPTURE);
560 mb_width = DIV_ROUND_UP(q_data_dst->width, 16);
Philipp Zabelf23797b2014-08-06 08:02:23 -0300561 w128 = mb_width * 128;
Philipp Zabel79924ca2014-07-23 12:28:45 -0300562
Philipp Zabelf23797b2014-08-06 08:02:23 -0300563 iram_info->buf_dbk_y_use = coda_iram_alloc(iram_info, w128);
564 iram_info->buf_dbk_c_use = coda_iram_alloc(iram_info, w128);
Philipp Zabel79924ca2014-07-23 12:28:45 -0300565 if (!iram_info->buf_dbk_c_use)
566 goto out;
567 iram_info->axi_sram_use |= dbk_bits;
568
Philipp Zabelf23797b2014-08-06 08:02:23 -0300569 iram_info->buf_bit_use = coda_iram_alloc(iram_info, w128);
Philipp Zabel79924ca2014-07-23 12:28:45 -0300570 if (!iram_info->buf_bit_use)
571 goto out;
572 iram_info->axi_sram_use |= bit_bits;
573
Philipp Zabelf23797b2014-08-06 08:02:23 -0300574 iram_info->buf_ip_ac_dc_use = coda_iram_alloc(iram_info, w128);
Philipp Zabel79924ca2014-07-23 12:28:45 -0300575 if (!iram_info->buf_ip_ac_dc_use)
576 goto out;
577 iram_info->axi_sram_use |= ip_bits;
578
579 /* OVL and BTP unused as there is no VC1 support yet */
580 }
581
582out:
583 if (!(iram_info->axi_sram_use & CODA7_USE_HOST_IP_ENABLE))
584 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
585 "IRAM smaller than needed\n");
586
587 if (dev->devtype->product == CODA_7541) {
588 /* TODO - Enabling these causes picture errors on CODA7541 */
589 if (ctx->inst_type == CODA_INST_DECODER) {
590 /* fw 1.4.50 */
591 iram_info->axi_sram_use &= ~(CODA7_USE_HOST_IP_ENABLE |
592 CODA7_USE_IP_ENABLE);
593 } else {
594 /* fw 13.4.29 */
595 iram_info->axi_sram_use &= ~(CODA7_USE_HOST_IP_ENABLE |
596 CODA7_USE_HOST_DBK_ENABLE |
597 CODA7_USE_IP_ENABLE |
598 CODA7_USE_DBK_ENABLE);
599 }
600 }
601}
602
603static u32 coda_supported_firmwares[] = {
604 CODA_FIRMWARE_VERNUM(CODA_DX6, 2, 2, 5),
605 CODA_FIRMWARE_VERNUM(CODA_7541, 1, 4, 50),
606 CODA_FIRMWARE_VERNUM(CODA_960, 2, 1, 5),
607};
608
609static bool coda_firmware_supported(u32 vernum)
610{
611 int i;
612
613 for (i = 0; i < ARRAY_SIZE(coda_supported_firmwares); i++)
614 if (vernum == coda_supported_firmwares[i])
615 return true;
616 return false;
617}
618
619int coda_check_firmware(struct coda_dev *dev)
620{
621 u16 product, major, minor, release;
622 u32 data;
623 int ret;
624
625 ret = clk_prepare_enable(dev->clk_per);
626 if (ret)
627 goto err_clk_per;
628
629 ret = clk_prepare_enable(dev->clk_ahb);
630 if (ret)
631 goto err_clk_ahb;
632
633 coda_write(dev, 0, CODA_CMD_FIRMWARE_VERNUM);
634 coda_write(dev, CODA_REG_BIT_BUSY_FLAG, CODA_REG_BIT_BUSY);
635 coda_write(dev, 0, CODA_REG_BIT_RUN_INDEX);
636 coda_write(dev, 0, CODA_REG_BIT_RUN_COD_STD);
637 coda_write(dev, CODA_COMMAND_FIRMWARE_GET, CODA_REG_BIT_RUN_COMMAND);
638 if (coda_wait_timeout(dev)) {
639 v4l2_err(&dev->v4l2_dev, "firmware get command error\n");
640 ret = -EIO;
641 goto err_run_cmd;
642 }
643
644 if (dev->devtype->product == CODA_960) {
645 data = coda_read(dev, CODA9_CMD_FIRMWARE_CODE_REV);
646 v4l2_info(&dev->v4l2_dev, "Firmware code revision: %d\n",
647 data);
648 }
649
650 /* Check we are compatible with the loaded firmware */
651 data = coda_read(dev, CODA_CMD_FIRMWARE_VERNUM);
652 product = CODA_FIRMWARE_PRODUCT(data);
653 major = CODA_FIRMWARE_MAJOR(data);
654 minor = CODA_FIRMWARE_MINOR(data);
655 release = CODA_FIRMWARE_RELEASE(data);
656
657 clk_disable_unprepare(dev->clk_per);
658 clk_disable_unprepare(dev->clk_ahb);
659
660 if (product != dev->devtype->product) {
Philipp Zabelf23797b2014-08-06 08:02:23 -0300661 v4l2_err(&dev->v4l2_dev,
662 "Wrong firmware. Hw: %s, Fw: %s, Version: %u.%u.%u\n",
Philipp Zabel79924ca2014-07-23 12:28:45 -0300663 coda_product_name(dev->devtype->product),
664 coda_product_name(product), major, minor, release);
665 return -EINVAL;
666 }
667
668 v4l2_info(&dev->v4l2_dev, "Initialized %s.\n",
669 coda_product_name(product));
670
671 if (coda_firmware_supported(data)) {
672 v4l2_info(&dev->v4l2_dev, "Firmware version: %u.%u.%u\n",
673 major, minor, release);
674 } else {
Philipp Zabelf23797b2014-08-06 08:02:23 -0300675 v4l2_warn(&dev->v4l2_dev,
676 "Unsupported firmware version: %u.%u.%u\n",
677 major, minor, release);
Philipp Zabel79924ca2014-07-23 12:28:45 -0300678 }
679
680 return 0;
681
682err_run_cmd:
683 clk_disable_unprepare(dev->clk_ahb);
684err_clk_ahb:
685 clk_disable_unprepare(dev->clk_per);
686err_clk_per:
687 return ret;
688}
689
690/*
691 * Encoder context operations
692 */
693
694static int coda_start_encoding(struct coda_ctx *ctx)
695{
696 struct coda_dev *dev = ctx->dev;
697 struct v4l2_device *v4l2_dev = &dev->v4l2_dev;
698 struct coda_q_data *q_data_src, *q_data_dst;
699 u32 bitstream_buf, bitstream_size;
700 struct vb2_buffer *buf;
701 int gamma, ret, value;
702 u32 dst_fourcc;
Philipp Zabelcb1d3a32014-10-02 14:08:31 -0300703 u32 stride;
Philipp Zabel79924ca2014-07-23 12:28:45 -0300704
705 q_data_src = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_OUTPUT);
706 q_data_dst = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_CAPTURE);
707 dst_fourcc = q_data_dst->fourcc;
708
709 /* Allocate per-instance buffers */
710 ret = coda_alloc_context_buffers(ctx, q_data_src);
711 if (ret < 0)
712 return ret;
713
714 buf = v4l2_m2m_next_dst_buf(ctx->fh.m2m_ctx);
715 bitstream_buf = vb2_dma_contig_plane_dma_addr(buf, 0);
716 bitstream_size = q_data_dst->sizeimage;
717
718 if (!coda_is_initialized(dev)) {
719 v4l2_err(v4l2_dev, "coda is not initialized.\n");
720 return -EFAULT;
721 }
722
Philipp Zabelcb1d3a32014-10-02 14:08:31 -0300723 if (dst_fourcc == V4L2_PIX_FMT_JPEG) {
724 if (!ctx->params.jpeg_qmat_tab[0])
725 ctx->params.jpeg_qmat_tab[0] = kmalloc(64, GFP_KERNEL);
726 if (!ctx->params.jpeg_qmat_tab[1])
727 ctx->params.jpeg_qmat_tab[1] = kmalloc(64, GFP_KERNEL);
728 coda_set_jpeg_compression_quality(ctx, ctx->params.jpeg_quality);
729 }
730
Philipp Zabel79924ca2014-07-23 12:28:45 -0300731 mutex_lock(&dev->coda_mutex);
732
733 coda_write(dev, ctx->parabuf.paddr, CODA_REG_BIT_PARA_BUF_ADDR);
734 coda_write(dev, bitstream_buf, CODA_REG_BIT_RD_PTR(ctx->reg_idx));
735 coda_write(dev, bitstream_buf, CODA_REG_BIT_WR_PTR(ctx->reg_idx));
736 switch (dev->devtype->product) {
737 case CODA_DX6:
738 coda_write(dev, CODADX6_STREAM_BUF_DYNALLOC_EN |
739 CODADX6_STREAM_BUF_PIC_RESET, CODA_REG_BIT_STREAM_CTRL);
740 break;
741 case CODA_960:
742 coda_write(dev, 0, CODA9_GDI_WPROT_RGN_EN);
743 /* fallthrough */
744 case CODA_7541:
745 coda_write(dev, CODA7_STREAM_BUF_DYNALLOC_EN |
746 CODA7_STREAM_BUF_PIC_RESET, CODA_REG_BIT_STREAM_CTRL);
747 break;
748 }
749
Philipp Zabel1cb12cf2014-09-29 09:53:47 -0300750 ctx->frame_mem_ctrl &= ~CODA_FRAME_CHROMA_INTERLEAVE;
751 if (q_data_src->fourcc == V4L2_PIX_FMT_NV12)
752 ctx->frame_mem_ctrl |= CODA_FRAME_CHROMA_INTERLEAVE;
Philipp Zabel2bf299c2014-09-29 09:53:46 -0300753 coda_write(dev, ctx->frame_mem_ctrl, CODA_REG_BIT_FRAME_MEM_CTRL);
Philipp Zabel79924ca2014-07-23 12:28:45 -0300754
755 if (dev->devtype->product == CODA_DX6) {
756 /* Configure the coda */
Philipp Zabelf23797b2014-08-06 08:02:23 -0300757 coda_write(dev, dev->iram.paddr,
758 CODADX6_REG_BIT_SEARCH_RAM_BASE_ADDR);
Philipp Zabel79924ca2014-07-23 12:28:45 -0300759 }
760
761 /* Could set rotation here if needed */
Philipp Zabel2bf299c2014-09-29 09:53:46 -0300762 value = 0;
Philipp Zabel79924ca2014-07-23 12:28:45 -0300763 switch (dev->devtype->product) {
764 case CODA_DX6:
Philipp Zabelf23797b2014-08-06 08:02:23 -0300765 value = (q_data_src->width & CODADX6_PICWIDTH_MASK)
766 << CODADX6_PICWIDTH_OFFSET;
767 value |= (q_data_src->height & CODADX6_PICHEIGHT_MASK)
768 << CODA_PICHEIGHT_OFFSET;
Philipp Zabel79924ca2014-07-23 12:28:45 -0300769 break;
770 case CODA_7541:
771 if (dst_fourcc == V4L2_PIX_FMT_H264) {
772 value = (round_up(q_data_src->width, 16) &
773 CODA7_PICWIDTH_MASK) << CODA7_PICWIDTH_OFFSET;
774 value |= (round_up(q_data_src->height, 16) &
Philipp Zabelf23797b2014-08-06 08:02:23 -0300775 CODA7_PICHEIGHT_MASK) << CODA_PICHEIGHT_OFFSET;
Philipp Zabel79924ca2014-07-23 12:28:45 -0300776 break;
777 }
778 /* fallthrough */
779 case CODA_960:
Philipp Zabelf23797b2014-08-06 08:02:23 -0300780 value = (q_data_src->width & CODA7_PICWIDTH_MASK)
781 << CODA7_PICWIDTH_OFFSET;
782 value |= (q_data_src->height & CODA7_PICHEIGHT_MASK)
783 << CODA_PICHEIGHT_OFFSET;
Philipp Zabel79924ca2014-07-23 12:28:45 -0300784 }
785 coda_write(dev, value, CODA_CMD_ENC_SEQ_SRC_SIZE);
Philipp Zabelcb1d3a32014-10-02 14:08:31 -0300786 if (dst_fourcc == V4L2_PIX_FMT_JPEG)
787 ctx->params.framerate = 0;
Philipp Zabel79924ca2014-07-23 12:28:45 -0300788 coda_write(dev, ctx->params.framerate,
789 CODA_CMD_ENC_SEQ_SRC_F_RATE);
790
791 ctx->params.codec_mode = ctx->codec->mode;
792 switch (dst_fourcc) {
793 case V4L2_PIX_FMT_MPEG4:
794 if (dev->devtype->product == CODA_960)
Philipp Zabelf23797b2014-08-06 08:02:23 -0300795 coda_write(dev, CODA9_STD_MPEG4,
796 CODA_CMD_ENC_SEQ_COD_STD);
Philipp Zabel79924ca2014-07-23 12:28:45 -0300797 else
Philipp Zabelf23797b2014-08-06 08:02:23 -0300798 coda_write(dev, CODA_STD_MPEG4,
799 CODA_CMD_ENC_SEQ_COD_STD);
Philipp Zabel79924ca2014-07-23 12:28:45 -0300800 coda_write(dev, 0, CODA_CMD_ENC_SEQ_MP4_PARA);
801 break;
802 case V4L2_PIX_FMT_H264:
803 if (dev->devtype->product == CODA_960)
Philipp Zabelf23797b2014-08-06 08:02:23 -0300804 coda_write(dev, CODA9_STD_H264,
805 CODA_CMD_ENC_SEQ_COD_STD);
Philipp Zabel79924ca2014-07-23 12:28:45 -0300806 else
Philipp Zabelf23797b2014-08-06 08:02:23 -0300807 coda_write(dev, CODA_STD_H264,
808 CODA_CMD_ENC_SEQ_COD_STD);
Philipp Zabel79924ca2014-07-23 12:28:45 -0300809 if (ctx->params.h264_deblk_enabled) {
810 value = ((ctx->params.h264_deblk_alpha &
811 CODA_264PARAM_DEBLKFILTEROFFSETALPHA_MASK) <<
812 CODA_264PARAM_DEBLKFILTEROFFSETALPHA_OFFSET) |
813 ((ctx->params.h264_deblk_beta &
814 CODA_264PARAM_DEBLKFILTEROFFSETBETA_MASK) <<
815 CODA_264PARAM_DEBLKFILTEROFFSETBETA_OFFSET);
816 } else {
817 value = 1 << CODA_264PARAM_DISABLEDEBLK_OFFSET;
818 }
819 coda_write(dev, value, CODA_CMD_ENC_SEQ_264_PARA);
820 break;
Philipp Zabelcb1d3a32014-10-02 14:08:31 -0300821 case V4L2_PIX_FMT_JPEG:
822 coda_write(dev, 0, CODA_CMD_ENC_SEQ_JPG_PARA);
823 coda_write(dev, ctx->params.jpeg_restart_interval,
824 CODA_CMD_ENC_SEQ_JPG_RST_INTERVAL);
825 coda_write(dev, 0, CODA_CMD_ENC_SEQ_JPG_THUMB_EN);
826 coda_write(dev, 0, CODA_CMD_ENC_SEQ_JPG_THUMB_SIZE);
827 coda_write(dev, 0, CODA_CMD_ENC_SEQ_JPG_THUMB_OFFSET);
828
829 coda_jpeg_write_tables(ctx);
830 break;
Philipp Zabel79924ca2014-07-23 12:28:45 -0300831 default:
832 v4l2_err(v4l2_dev,
833 "dst format (0x%08x) invalid.\n", dst_fourcc);
834 ret = -EINVAL;
835 goto out;
836 }
837
Philipp Zabelcb1d3a32014-10-02 14:08:31 -0300838 /*
839 * slice mode and GOP size registers are used for thumb size/offset
840 * in JPEG mode
841 */
842 if (dst_fourcc != V4L2_PIX_FMT_JPEG) {
843 switch (ctx->params.slice_mode) {
844 case V4L2_MPEG_VIDEO_MULTI_SLICE_MODE_SINGLE:
845 value = 0;
846 break;
847 case V4L2_MPEG_VIDEO_MULTI_SICE_MODE_MAX_MB:
848 value = (ctx->params.slice_max_mb &
849 CODA_SLICING_SIZE_MASK)
850 << CODA_SLICING_SIZE_OFFSET;
851 value |= (1 & CODA_SLICING_UNIT_MASK)
852 << CODA_SLICING_UNIT_OFFSET;
853 value |= 1 & CODA_SLICING_MODE_MASK;
854 break;
855 case V4L2_MPEG_VIDEO_MULTI_SICE_MODE_MAX_BYTES:
856 value = (ctx->params.slice_max_bits &
857 CODA_SLICING_SIZE_MASK)
858 << CODA_SLICING_SIZE_OFFSET;
859 value |= (0 & CODA_SLICING_UNIT_MASK)
860 << CODA_SLICING_UNIT_OFFSET;
861 value |= 1 & CODA_SLICING_MODE_MASK;
862 break;
863 }
864 coda_write(dev, value, CODA_CMD_ENC_SEQ_SLICE_MODE);
865 value = ctx->params.gop_size & CODA_GOP_SIZE_MASK;
866 coda_write(dev, value, CODA_CMD_ENC_SEQ_GOP_SIZE);
Philipp Zabel79924ca2014-07-23 12:28:45 -0300867 }
Philipp Zabel79924ca2014-07-23 12:28:45 -0300868
869 if (ctx->params.bitrate) {
870 /* Rate control enabled */
Philipp Zabelf23797b2014-08-06 08:02:23 -0300871 value = (ctx->params.bitrate & CODA_RATECONTROL_BITRATE_MASK)
872 << CODA_RATECONTROL_BITRATE_OFFSET;
Philipp Zabel79924ca2014-07-23 12:28:45 -0300873 value |= 1 & CODA_RATECONTROL_ENABLE_MASK;
874 if (dev->devtype->product == CODA_960)
875 value |= BIT(31); /* disable autoskip */
876 } else {
877 value = 0;
878 }
879 coda_write(dev, value, CODA_CMD_ENC_SEQ_RC_PARA);
880
881 coda_write(dev, 0, CODA_CMD_ENC_SEQ_RC_BUF_SIZE);
882 coda_write(dev, ctx->params.intra_refresh,
883 CODA_CMD_ENC_SEQ_INTRA_REFRESH);
884
885 coda_write(dev, bitstream_buf, CODA_CMD_ENC_SEQ_BB_START);
886 coda_write(dev, bitstream_size / 1024, CODA_CMD_ENC_SEQ_BB_SIZE);
887
888
889 value = 0;
890 if (dev->devtype->product == CODA_960)
891 gamma = CODA9_DEFAULT_GAMMA;
892 else
893 gamma = CODA_DEFAULT_GAMMA;
894 if (gamma > 0) {
895 coda_write(dev, (gamma & CODA_GAMMA_MASK) << CODA_GAMMA_OFFSET,
896 CODA_CMD_ENC_SEQ_RC_GAMMA);
897 }
898
899 if (ctx->params.h264_min_qp || ctx->params.h264_max_qp) {
900 coda_write(dev,
901 ctx->params.h264_min_qp << CODA_QPMIN_OFFSET |
902 ctx->params.h264_max_qp << CODA_QPMAX_OFFSET,
903 CODA_CMD_ENC_SEQ_RC_QP_MIN_MAX);
904 }
905 if (dev->devtype->product == CODA_960) {
906 if (ctx->params.h264_max_qp)
907 value |= 1 << CODA9_OPTION_RCQPMAX_OFFSET;
908 if (CODA_DEFAULT_GAMMA > 0)
909 value |= 1 << CODA9_OPTION_GAMMA_OFFSET;
910 } else {
911 if (CODA_DEFAULT_GAMMA > 0) {
912 if (dev->devtype->product == CODA_DX6)
913 value |= 1 << CODADX6_OPTION_GAMMA_OFFSET;
914 else
915 value |= 1 << CODA7_OPTION_GAMMA_OFFSET;
916 }
917 if (ctx->params.h264_min_qp)
918 value |= 1 << CODA7_OPTION_RCQPMIN_OFFSET;
919 if (ctx->params.h264_max_qp)
920 value |= 1 << CODA7_OPTION_RCQPMAX_OFFSET;
921 }
922 coda_write(dev, value, CODA_CMD_ENC_SEQ_OPTION);
923
924 coda_write(dev, 0, CODA_CMD_ENC_SEQ_RC_INTERVAL_MODE);
925
926 coda_setup_iram(ctx);
927
928 if (dst_fourcc == V4L2_PIX_FMT_H264) {
929 switch (dev->devtype->product) {
930 case CODA_DX6:
931 value = FMO_SLICE_SAVE_BUF_SIZE << 7;
932 coda_write(dev, value, CODADX6_CMD_ENC_SEQ_FMO);
933 break;
934 case CODA_7541:
935 coda_write(dev, ctx->iram_info.search_ram_paddr,
936 CODA7_CMD_ENC_SEQ_SEARCH_BASE);
937 coda_write(dev, ctx->iram_info.search_ram_size,
938 CODA7_CMD_ENC_SEQ_SEARCH_SIZE);
939 break;
940 case CODA_960:
941 coda_write(dev, 0, CODA9_CMD_ENC_SEQ_ME_OPTION);
942 coda_write(dev, 0, CODA9_CMD_ENC_SEQ_INTRA_WEIGHT);
943 }
944 }
945
946 ret = coda_command_sync(ctx, CODA_COMMAND_SEQ_INIT);
947 if (ret < 0) {
948 v4l2_err(v4l2_dev, "CODA_COMMAND_SEQ_INIT timeout\n");
949 goto out;
950 }
951
952 if (coda_read(dev, CODA_RET_ENC_SEQ_SUCCESS) == 0) {
953 v4l2_err(v4l2_dev, "CODA_COMMAND_SEQ_INIT failed\n");
954 ret = -EFAULT;
955 goto out;
956 }
957
Philipp Zabelcb1d3a32014-10-02 14:08:31 -0300958 if (dst_fourcc != V4L2_PIX_FMT_JPEG) {
959 if (dev->devtype->product == CODA_960)
960 ctx->num_internal_frames = 4;
961 else
962 ctx->num_internal_frames = 2;
963 ret = coda_alloc_framebuffers(ctx, q_data_src, dst_fourcc);
964 if (ret < 0) {
965 v4l2_err(v4l2_dev, "failed to allocate framebuffers\n");
966 goto out;
967 }
968 stride = q_data_src->bytesperline;
969 } else {
970 ctx->num_internal_frames = 0;
971 stride = 0;
Philipp Zabel79924ca2014-07-23 12:28:45 -0300972 }
Philipp Zabel79924ca2014-07-23 12:28:45 -0300973 coda_write(dev, ctx->num_internal_frames, CODA_CMD_SET_FRAME_BUF_NUM);
Philipp Zabelcb1d3a32014-10-02 14:08:31 -0300974 coda_write(dev, stride, CODA_CMD_SET_FRAME_BUF_STRIDE);
975
Philipp Zabel79924ca2014-07-23 12:28:45 -0300976 if (dev->devtype->product == CODA_7541) {
977 coda_write(dev, q_data_src->bytesperline,
978 CODA7_CMD_SET_FRAME_SOURCE_BUF_STRIDE);
979 }
980 if (dev->devtype->product != CODA_DX6) {
981 coda_write(dev, ctx->iram_info.buf_bit_use,
982 CODA7_CMD_SET_FRAME_AXI_BIT_ADDR);
983 coda_write(dev, ctx->iram_info.buf_ip_ac_dc_use,
984 CODA7_CMD_SET_FRAME_AXI_IPACDC_ADDR);
985 coda_write(dev, ctx->iram_info.buf_dbk_y_use,
986 CODA7_CMD_SET_FRAME_AXI_DBKY_ADDR);
987 coda_write(dev, ctx->iram_info.buf_dbk_c_use,
988 CODA7_CMD_SET_FRAME_AXI_DBKC_ADDR);
989 coda_write(dev, ctx->iram_info.buf_ovl_use,
990 CODA7_CMD_SET_FRAME_AXI_OVL_ADDR);
991 if (dev->devtype->product == CODA_960) {
992 coda_write(dev, ctx->iram_info.buf_btp_use,
993 CODA9_CMD_SET_FRAME_AXI_BTP_ADDR);
994
995 /* FIXME */
Philipp Zabelf23797b2014-08-06 08:02:23 -0300996 coda_write(dev, ctx->internal_frames[2].paddr,
997 CODA9_CMD_SET_FRAME_SUBSAMP_A);
998 coda_write(dev, ctx->internal_frames[3].paddr,
999 CODA9_CMD_SET_FRAME_SUBSAMP_B);
Philipp Zabel79924ca2014-07-23 12:28:45 -03001000 }
1001 }
1002
1003 ret = coda_command_sync(ctx, CODA_COMMAND_SET_FRAME_BUF);
1004 if (ret < 0) {
1005 v4l2_err(v4l2_dev, "CODA_COMMAND_SET_FRAME_BUF timeout\n");
1006 goto out;
1007 }
1008
1009 /* Save stream headers */
1010 buf = v4l2_m2m_next_dst_buf(ctx->fh.m2m_ctx);
1011 switch (dst_fourcc) {
1012 case V4L2_PIX_FMT_H264:
1013 /*
1014 * Get SPS in the first frame and copy it to an
1015 * intermediate buffer.
1016 */
1017 ret = coda_encode_header(ctx, buf, CODA_HEADER_H264_SPS,
1018 &ctx->vpu_header[0][0],
1019 &ctx->vpu_header_size[0]);
1020 if (ret < 0)
1021 goto out;
1022
1023 /*
1024 * Get PPS in the first frame and copy it to an
1025 * intermediate buffer.
1026 */
1027 ret = coda_encode_header(ctx, buf, CODA_HEADER_H264_PPS,
1028 &ctx->vpu_header[1][0],
1029 &ctx->vpu_header_size[1]);
1030 if (ret < 0)
1031 goto out;
1032
1033 /*
1034 * Length of H.264 headers is variable and thus it might not be
1035 * aligned for the coda to append the encoded frame. In that is
1036 * the case a filler NAL must be added to header 2.
1037 */
1038 ctx->vpu_header_size[2] = coda_h264_padding(
1039 (ctx->vpu_header_size[0] +
1040 ctx->vpu_header_size[1]),
1041 ctx->vpu_header[2]);
1042 break;
1043 case V4L2_PIX_FMT_MPEG4:
1044 /*
1045 * Get VOS in the first frame and copy it to an
1046 * intermediate buffer
1047 */
1048 ret = coda_encode_header(ctx, buf, CODA_HEADER_MP4V_VOS,
1049 &ctx->vpu_header[0][0],
1050 &ctx->vpu_header_size[0]);
1051 if (ret < 0)
1052 goto out;
1053
1054 ret = coda_encode_header(ctx, buf, CODA_HEADER_MP4V_VIS,
1055 &ctx->vpu_header[1][0],
1056 &ctx->vpu_header_size[1]);
1057 if (ret < 0)
1058 goto out;
1059
1060 ret = coda_encode_header(ctx, buf, CODA_HEADER_MP4V_VOL,
1061 &ctx->vpu_header[2][0],
1062 &ctx->vpu_header_size[2]);
1063 if (ret < 0)
1064 goto out;
1065 break;
1066 default:
1067 /* No more formats need to save headers at the moment */
1068 break;
1069 }
1070
1071out:
1072 mutex_unlock(&dev->coda_mutex);
1073 return ret;
1074}
1075
1076static int coda_prepare_encode(struct coda_ctx *ctx)
1077{
1078 struct coda_q_data *q_data_src, *q_data_dst;
1079 struct vb2_buffer *src_buf, *dst_buf;
1080 struct coda_dev *dev = ctx->dev;
1081 int force_ipicture;
1082 int quant_param = 0;
Philipp Zabel79924ca2014-07-23 12:28:45 -03001083 u32 pic_stream_buffer_addr, pic_stream_buffer_size;
Philipp Zabel59ebc2e2014-09-29 09:53:45 -03001084 u32 rot_mode = 0;
Philipp Zabel79924ca2014-07-23 12:28:45 -03001085 u32 dst_fourcc;
Philipp Zabel856d7d92014-09-29 09:53:44 -03001086 u32 reg;
Philipp Zabel79924ca2014-07-23 12:28:45 -03001087
1088 src_buf = v4l2_m2m_next_src_buf(ctx->fh.m2m_ctx);
1089 dst_buf = v4l2_m2m_next_dst_buf(ctx->fh.m2m_ctx);
1090 q_data_src = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_OUTPUT);
1091 q_data_dst = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_CAPTURE);
1092 dst_fourcc = q_data_dst->fourcc;
1093
1094 src_buf->v4l2_buf.sequence = ctx->osequence;
1095 dst_buf->v4l2_buf.sequence = ctx->osequence;
1096 ctx->osequence++;
1097
1098 /*
1099 * Workaround coda firmware BUG that only marks the first
1100 * frame as IDR. This is a problem for some decoders that can't
1101 * recover when a frame is lost.
1102 */
1103 if (src_buf->v4l2_buf.sequence % ctx->params.gop_size) {
1104 src_buf->v4l2_buf.flags |= V4L2_BUF_FLAG_PFRAME;
1105 src_buf->v4l2_buf.flags &= ~V4L2_BUF_FLAG_KEYFRAME;
1106 } else {
1107 src_buf->v4l2_buf.flags |= V4L2_BUF_FLAG_KEYFRAME;
1108 src_buf->v4l2_buf.flags &= ~V4L2_BUF_FLAG_PFRAME;
1109 }
1110
1111 if (dev->devtype->product == CODA_960)
1112 coda_set_gdi_regs(ctx);
1113
1114 /*
1115 * Copy headers at the beginning of the first frame for H.264 only.
1116 * In MPEG4 they are already copied by the coda.
1117 */
1118 if (src_buf->v4l2_buf.sequence == 0) {
1119 pic_stream_buffer_addr =
1120 vb2_dma_contig_plane_dma_addr(dst_buf, 0) +
1121 ctx->vpu_header_size[0] +
1122 ctx->vpu_header_size[1] +
1123 ctx->vpu_header_size[2];
1124 pic_stream_buffer_size = CODA_MAX_FRAME_SIZE -
1125 ctx->vpu_header_size[0] -
1126 ctx->vpu_header_size[1] -
1127 ctx->vpu_header_size[2];
1128 memcpy(vb2_plane_vaddr(dst_buf, 0),
1129 &ctx->vpu_header[0][0], ctx->vpu_header_size[0]);
1130 memcpy(vb2_plane_vaddr(dst_buf, 0) + ctx->vpu_header_size[0],
1131 &ctx->vpu_header[1][0], ctx->vpu_header_size[1]);
1132 memcpy(vb2_plane_vaddr(dst_buf, 0) + ctx->vpu_header_size[0] +
1133 ctx->vpu_header_size[1], &ctx->vpu_header[2][0],
1134 ctx->vpu_header_size[2]);
1135 } else {
1136 pic_stream_buffer_addr =
1137 vb2_dma_contig_plane_dma_addr(dst_buf, 0);
1138 pic_stream_buffer_size = CODA_MAX_FRAME_SIZE;
1139 }
1140
1141 if (src_buf->v4l2_buf.flags & V4L2_BUF_FLAG_KEYFRAME) {
1142 force_ipicture = 1;
1143 switch (dst_fourcc) {
1144 case V4L2_PIX_FMT_H264:
1145 quant_param = ctx->params.h264_intra_qp;
1146 break;
1147 case V4L2_PIX_FMT_MPEG4:
1148 quant_param = ctx->params.mpeg4_intra_qp;
1149 break;
Philipp Zabelcb1d3a32014-10-02 14:08:31 -03001150 case V4L2_PIX_FMT_JPEG:
1151 quant_param = 30;
1152 break;
Philipp Zabel79924ca2014-07-23 12:28:45 -03001153 default:
1154 v4l2_warn(&ctx->dev->v4l2_dev,
1155 "cannot set intra qp, fmt not supported\n");
1156 break;
1157 }
1158 } else {
1159 force_ipicture = 0;
1160 switch (dst_fourcc) {
1161 case V4L2_PIX_FMT_H264:
1162 quant_param = ctx->params.h264_inter_qp;
1163 break;
1164 case V4L2_PIX_FMT_MPEG4:
1165 quant_param = ctx->params.mpeg4_inter_qp;
1166 break;
1167 default:
1168 v4l2_warn(&ctx->dev->v4l2_dev,
1169 "cannot set inter qp, fmt not supported\n");
1170 break;
1171 }
1172 }
1173
1174 /* submit */
Philipp Zabel59ebc2e2014-09-29 09:53:45 -03001175 if (ctx->params.rot_mode)
1176 rot_mode = CODA_ROT_MIR_ENABLE | ctx->params.rot_mode;
1177 coda_write(dev, rot_mode, CODA_CMD_ENC_PIC_ROT_MODE);
Philipp Zabel79924ca2014-07-23 12:28:45 -03001178 coda_write(dev, quant_param, CODA_CMD_ENC_PIC_QS);
1179
Philipp Zabel79924ca2014-07-23 12:28:45 -03001180 if (dev->devtype->product == CODA_960) {
1181 coda_write(dev, 4/*FIXME: 0*/, CODA9_CMD_ENC_PIC_SRC_INDEX);
1182 coda_write(dev, q_data_src->width, CODA9_CMD_ENC_PIC_SRC_STRIDE);
1183 coda_write(dev, 0, CODA9_CMD_ENC_PIC_SUB_FRAME_SYNC);
1184
Philipp Zabel856d7d92014-09-29 09:53:44 -03001185 reg = CODA9_CMD_ENC_PIC_SRC_ADDR_Y;
Philipp Zabel79924ca2014-07-23 12:28:45 -03001186 } else {
Philipp Zabel856d7d92014-09-29 09:53:44 -03001187 reg = CODA_CMD_ENC_PIC_SRC_ADDR_Y;
Philipp Zabel79924ca2014-07-23 12:28:45 -03001188 }
Philipp Zabel856d7d92014-09-29 09:53:44 -03001189 coda_write_base(ctx, q_data_src, src_buf, reg);
1190
Philipp Zabel79924ca2014-07-23 12:28:45 -03001191 coda_write(dev, force_ipicture << 1 & 0x2,
1192 CODA_CMD_ENC_PIC_OPTION);
1193
1194 coda_write(dev, pic_stream_buffer_addr, CODA_CMD_ENC_PIC_BB_START);
1195 coda_write(dev, pic_stream_buffer_size / 1024,
1196 CODA_CMD_ENC_PIC_BB_SIZE);
1197
1198 if (!ctx->streamon_out) {
Philipp Zabelf23797b2014-08-06 08:02:23 -03001199 /* After streamoff on the output side, set stream end flag */
Philipp Zabel79924ca2014-07-23 12:28:45 -03001200 ctx->bit_stream_param |= CODA_BIT_STREAM_END_FLAG;
Philipp Zabelf23797b2014-08-06 08:02:23 -03001201 coda_write(dev, ctx->bit_stream_param,
1202 CODA_REG_BIT_BIT_STREAM_PARAM);
Philipp Zabel79924ca2014-07-23 12:28:45 -03001203 }
1204
1205 if (dev->devtype->product != CODA_DX6)
1206 coda_write(dev, ctx->iram_info.axi_sram_use,
1207 CODA7_REG_BIT_AXI_SRAM_USE);
1208
1209 coda_command_async(ctx, CODA_COMMAND_PIC_RUN);
1210
1211 return 0;
1212}
1213
1214static void coda_finish_encode(struct coda_ctx *ctx)
1215{
1216 struct vb2_buffer *src_buf, *dst_buf;
1217 struct coda_dev *dev = ctx->dev;
1218 u32 wr_ptr, start_ptr;
1219
1220 src_buf = v4l2_m2m_src_buf_remove(ctx->fh.m2m_ctx);
1221 dst_buf = v4l2_m2m_next_dst_buf(ctx->fh.m2m_ctx);
1222
1223 /* Get results from the coda */
1224 start_ptr = coda_read(dev, CODA_CMD_ENC_PIC_BB_START);
1225 wr_ptr = coda_read(dev, CODA_REG_BIT_WR_PTR(ctx->reg_idx));
1226
1227 /* Calculate bytesused field */
1228 if (dst_buf->v4l2_buf.sequence == 0) {
1229 vb2_set_plane_payload(dst_buf, 0, wr_ptr - start_ptr +
1230 ctx->vpu_header_size[0] +
1231 ctx->vpu_header_size[1] +
1232 ctx->vpu_header_size[2]);
1233 } else {
1234 vb2_set_plane_payload(dst_buf, 0, wr_ptr - start_ptr);
1235 }
1236
1237 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev, "frame size = %u\n",
1238 wr_ptr - start_ptr);
1239
1240 coda_read(dev, CODA_RET_ENC_PIC_SLICE_NUM);
1241 coda_read(dev, CODA_RET_ENC_PIC_FLAG);
1242
1243 if (coda_read(dev, CODA_RET_ENC_PIC_TYPE) == 0) {
1244 dst_buf->v4l2_buf.flags |= V4L2_BUF_FLAG_KEYFRAME;
1245 dst_buf->v4l2_buf.flags &= ~V4L2_BUF_FLAG_PFRAME;
1246 } else {
1247 dst_buf->v4l2_buf.flags |= V4L2_BUF_FLAG_PFRAME;
1248 dst_buf->v4l2_buf.flags &= ~V4L2_BUF_FLAG_KEYFRAME;
1249 }
1250
1251 dst_buf->v4l2_buf.timestamp = src_buf->v4l2_buf.timestamp;
1252 dst_buf->v4l2_buf.flags &= ~V4L2_BUF_FLAG_TSTAMP_SRC_MASK;
1253 dst_buf->v4l2_buf.flags |=
1254 src_buf->v4l2_buf.flags & V4L2_BUF_FLAG_TSTAMP_SRC_MASK;
1255 dst_buf->v4l2_buf.timecode = src_buf->v4l2_buf.timecode;
1256
1257 v4l2_m2m_buf_done(src_buf, VB2_BUF_STATE_DONE);
1258
1259 dst_buf = v4l2_m2m_dst_buf_remove(ctx->fh.m2m_ctx);
1260 v4l2_m2m_buf_done(dst_buf, VB2_BUF_STATE_DONE);
1261
1262 ctx->gopcounter--;
1263 if (ctx->gopcounter < 0)
1264 ctx->gopcounter = ctx->params.gop_size - 1;
1265
1266 v4l2_dbg(1, coda_debug, &dev->v4l2_dev,
1267 "job finished: encoding frame (%d) (%s)\n",
1268 dst_buf->v4l2_buf.sequence,
1269 (dst_buf->v4l2_buf.flags & V4L2_BUF_FLAG_KEYFRAME) ?
1270 "KEYFRAME" : "PFRAME");
1271}
1272
1273static void coda_seq_end_work(struct work_struct *work)
1274{
1275 struct coda_ctx *ctx = container_of(work, struct coda_ctx, seq_end_work);
1276 struct coda_dev *dev = ctx->dev;
1277
1278 mutex_lock(&ctx->buffer_mutex);
1279 mutex_lock(&dev->coda_mutex);
1280
1281 v4l2_dbg(1, coda_debug, &dev->v4l2_dev,
Philipp Zabelf23797b2014-08-06 08:02:23 -03001282 "%d: %s: sent command 'SEQ_END' to coda\n", ctx->idx,
1283 __func__);
Philipp Zabel79924ca2014-07-23 12:28:45 -03001284 if (coda_command_sync(ctx, CODA_COMMAND_SEQ_END)) {
1285 v4l2_err(&dev->v4l2_dev,
1286 "CODA_COMMAND_SEQ_END failed\n");
1287 }
1288
1289 kfifo_init(&ctx->bitstream_fifo,
1290 ctx->bitstream.vaddr, ctx->bitstream.size);
1291
1292 coda_free_framebuffers(ctx);
1293 coda_free_context_buffers(ctx);
1294
1295 mutex_unlock(&dev->coda_mutex);
1296 mutex_unlock(&ctx->buffer_mutex);
1297}
1298
1299static void coda_bit_release(struct coda_ctx *ctx)
1300{
1301 coda_free_framebuffers(ctx);
1302 coda_free_context_buffers(ctx);
1303}
1304
1305const struct coda_context_ops coda_bit_encode_ops = {
1306 .queue_init = coda_encoder_queue_init,
1307 .start_streaming = coda_start_encoding,
1308 .prepare_run = coda_prepare_encode,
1309 .finish_run = coda_finish_encode,
1310 .seq_end_work = coda_seq_end_work,
1311 .release = coda_bit_release,
1312};
1313
1314/*
1315 * Decoder context operations
1316 */
1317
1318static int __coda_start_decoding(struct coda_ctx *ctx)
1319{
1320 struct coda_q_data *q_data_src, *q_data_dst;
1321 u32 bitstream_buf, bitstream_size;
1322 struct coda_dev *dev = ctx->dev;
1323 int width, height;
Philipp Zabel1cb12cf2014-09-29 09:53:47 -03001324 u32 src_fourcc, dst_fourcc;
Philipp Zabel79924ca2014-07-23 12:28:45 -03001325 u32 val;
1326 int ret;
1327
1328 /* Start decoding */
1329 q_data_src = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_OUTPUT);
1330 q_data_dst = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_CAPTURE);
1331 bitstream_buf = ctx->bitstream.paddr;
1332 bitstream_size = ctx->bitstream.size;
1333 src_fourcc = q_data_src->fourcc;
Philipp Zabel1cb12cf2014-09-29 09:53:47 -03001334 dst_fourcc = q_data_dst->fourcc;
Philipp Zabel79924ca2014-07-23 12:28:45 -03001335
1336 /* Allocate per-instance buffers */
1337 ret = coda_alloc_context_buffers(ctx, q_data_src);
1338 if (ret < 0)
1339 return ret;
1340
1341 coda_write(dev, ctx->parabuf.paddr, CODA_REG_BIT_PARA_BUF_ADDR);
1342
1343 /* Update coda bitstream read and write pointers from kfifo */
1344 coda_kfifo_sync_to_device_full(ctx);
1345
Philipp Zabel1cb12cf2014-09-29 09:53:47 -03001346 ctx->frame_mem_ctrl &= ~CODA_FRAME_CHROMA_INTERLEAVE;
1347 if (dst_fourcc == V4L2_PIX_FMT_NV12)
1348 ctx->frame_mem_ctrl |= CODA_FRAME_CHROMA_INTERLEAVE;
Philipp Zabel2bf299c2014-09-29 09:53:46 -03001349 coda_write(dev, ctx->frame_mem_ctrl, CODA_REG_BIT_FRAME_MEM_CTRL);
1350
Philipp Zabel79924ca2014-07-23 12:28:45 -03001351 ctx->display_idx = -1;
1352 ctx->frm_dis_flg = 0;
1353 coda_write(dev, 0, CODA_REG_BIT_FRM_DIS_FLG(ctx->reg_idx));
1354
1355 coda_write(dev, CODA_BIT_DEC_SEQ_INIT_ESCAPE,
1356 CODA_REG_BIT_BIT_STREAM_PARAM);
1357
1358 coda_write(dev, bitstream_buf, CODA_CMD_DEC_SEQ_BB_START);
1359 coda_write(dev, bitstream_size / 1024, CODA_CMD_DEC_SEQ_BB_SIZE);
1360 val = 0;
1361 if ((dev->devtype->product == CODA_7541) ||
1362 (dev->devtype->product == CODA_960))
1363 val |= CODA_REORDER_ENABLE;
Philipp Zabelcb1d3a32014-10-02 14:08:31 -03001364 if (ctx->codec->src_fourcc == V4L2_PIX_FMT_JPEG)
1365 val |= CODA_NO_INT_ENABLE;
Philipp Zabel79924ca2014-07-23 12:28:45 -03001366 coda_write(dev, val, CODA_CMD_DEC_SEQ_OPTION);
1367
1368 ctx->params.codec_mode = ctx->codec->mode;
1369 if (dev->devtype->product == CODA_960 &&
1370 src_fourcc == V4L2_PIX_FMT_MPEG4)
1371 ctx->params.codec_mode_aux = CODA_MP4_AUX_MPEG4;
1372 else
1373 ctx->params.codec_mode_aux = 0;
1374 if (src_fourcc == V4L2_PIX_FMT_H264) {
1375 if (dev->devtype->product == CODA_7541) {
1376 coda_write(dev, ctx->psbuf.paddr,
1377 CODA_CMD_DEC_SEQ_PS_BB_START);
1378 coda_write(dev, (CODA7_PS_BUF_SIZE / 1024),
1379 CODA_CMD_DEC_SEQ_PS_BB_SIZE);
1380 }
1381 if (dev->devtype->product == CODA_960) {
1382 coda_write(dev, 0, CODA_CMD_DEC_SEQ_X264_MV_EN);
1383 coda_write(dev, 512, CODA_CMD_DEC_SEQ_SPP_CHUNK_SIZE);
1384 }
1385 }
1386 if (dev->devtype->product != CODA_960)
1387 coda_write(dev, 0, CODA_CMD_DEC_SEQ_SRC_SIZE);
1388
1389 if (coda_command_sync(ctx, CODA_COMMAND_SEQ_INIT)) {
1390 v4l2_err(&dev->v4l2_dev, "CODA_COMMAND_SEQ_INIT timeout\n");
1391 coda_write(dev, 0, CODA_REG_BIT_BIT_STREAM_PARAM);
1392 return -ETIMEDOUT;
1393 }
1394
1395 /* Update kfifo out pointer from coda bitstream read pointer */
1396 coda_kfifo_sync_from_device(ctx);
1397
1398 coda_write(dev, 0, CODA_REG_BIT_BIT_STREAM_PARAM);
1399
1400 if (coda_read(dev, CODA_RET_DEC_SEQ_SUCCESS) == 0) {
1401 v4l2_err(&dev->v4l2_dev,
1402 "CODA_COMMAND_SEQ_INIT failed, error code = %d\n",
1403 coda_read(dev, CODA_RET_DEC_SEQ_ERR_REASON));
1404 return -EAGAIN;
1405 }
1406
1407 val = coda_read(dev, CODA_RET_DEC_SEQ_SRC_SIZE);
1408 if (dev->devtype->product == CODA_DX6) {
1409 width = (val >> CODADX6_PICWIDTH_OFFSET) & CODADX6_PICWIDTH_MASK;
1410 height = val & CODADX6_PICHEIGHT_MASK;
1411 } else {
1412 width = (val >> CODA7_PICWIDTH_OFFSET) & CODA7_PICWIDTH_MASK;
1413 height = val & CODA7_PICHEIGHT_MASK;
1414 }
1415
1416 if (width > q_data_dst->width || height > q_data_dst->height) {
1417 v4l2_err(&dev->v4l2_dev, "stream is %dx%d, not %dx%d\n",
1418 width, height, q_data_dst->width, q_data_dst->height);
1419 return -EINVAL;
1420 }
1421
1422 width = round_up(width, 16);
1423 height = round_up(height, 16);
1424
1425 v4l2_dbg(1, coda_debug, &dev->v4l2_dev, "%s instance %d now: %dx%d\n",
1426 __func__, ctx->idx, width, height);
1427
1428 ctx->num_internal_frames = coda_read(dev, CODA_RET_DEC_SEQ_FRAME_NEED);
1429 if (ctx->num_internal_frames > CODA_MAX_FRAMEBUFFERS) {
1430 v4l2_err(&dev->v4l2_dev,
1431 "not enough framebuffers to decode (%d < %d)\n",
1432 CODA_MAX_FRAMEBUFFERS, ctx->num_internal_frames);
1433 return -EINVAL;
1434 }
1435
1436 if (src_fourcc == V4L2_PIX_FMT_H264) {
1437 u32 left_right;
1438 u32 top_bottom;
1439
1440 left_right = coda_read(dev, CODA_RET_DEC_SEQ_CROP_LEFT_RIGHT);
1441 top_bottom = coda_read(dev, CODA_RET_DEC_SEQ_CROP_TOP_BOTTOM);
1442
1443 q_data_dst->rect.left = (left_right >> 10) & 0x3ff;
1444 q_data_dst->rect.top = (top_bottom >> 10) & 0x3ff;
1445 q_data_dst->rect.width = width - q_data_dst->rect.left -
1446 (left_right & 0x3ff);
1447 q_data_dst->rect.height = height - q_data_dst->rect.top -
1448 (top_bottom & 0x3ff);
1449 }
1450
1451 ret = coda_alloc_framebuffers(ctx, q_data_dst, src_fourcc);
Philipp Zabel68fc31c2014-08-05 14:00:16 -03001452 if (ret < 0) {
1453 v4l2_err(&dev->v4l2_dev, "failed to allocate framebuffers\n");
Philipp Zabel79924ca2014-07-23 12:28:45 -03001454 return ret;
Philipp Zabel68fc31c2014-08-05 14:00:16 -03001455 }
Philipp Zabel79924ca2014-07-23 12:28:45 -03001456
1457 /* Tell the decoder how many frame buffers we allocated. */
1458 coda_write(dev, ctx->num_internal_frames, CODA_CMD_SET_FRAME_BUF_NUM);
1459 coda_write(dev, width, CODA_CMD_SET_FRAME_BUF_STRIDE);
1460
1461 if (dev->devtype->product != CODA_DX6) {
1462 /* Set secondary AXI IRAM */
1463 coda_setup_iram(ctx);
1464
1465 coda_write(dev, ctx->iram_info.buf_bit_use,
1466 CODA7_CMD_SET_FRAME_AXI_BIT_ADDR);
1467 coda_write(dev, ctx->iram_info.buf_ip_ac_dc_use,
1468 CODA7_CMD_SET_FRAME_AXI_IPACDC_ADDR);
1469 coda_write(dev, ctx->iram_info.buf_dbk_y_use,
1470 CODA7_CMD_SET_FRAME_AXI_DBKY_ADDR);
1471 coda_write(dev, ctx->iram_info.buf_dbk_c_use,
1472 CODA7_CMD_SET_FRAME_AXI_DBKC_ADDR);
1473 coda_write(dev, ctx->iram_info.buf_ovl_use,
1474 CODA7_CMD_SET_FRAME_AXI_OVL_ADDR);
1475 if (dev->devtype->product == CODA_960)
1476 coda_write(dev, ctx->iram_info.buf_btp_use,
1477 CODA9_CMD_SET_FRAME_AXI_BTP_ADDR);
1478 }
1479
1480 if (dev->devtype->product == CODA_960) {
Philipp Zabel1cb12cf2014-09-29 09:53:47 -03001481 int cbb_size, crb_size;
Philipp Zabel79924ca2014-07-23 12:28:45 -03001482
Philipp Zabel1cb12cf2014-09-29 09:53:47 -03001483 coda_write(dev, -1, CODA9_CMD_SET_FRAME_DELAY);
1484 /* Luma 2x0 page, 2x6 cache, chroma 2x0 page, 2x4 cache size */
Philipp Zabel79924ca2014-07-23 12:28:45 -03001485 coda_write(dev, 0x20262024, CODA9_CMD_SET_FRAME_CACHE_SIZE);
Philipp Zabel1cb12cf2014-09-29 09:53:47 -03001486
1487 if (dst_fourcc == V4L2_PIX_FMT_NV12) {
1488 cbb_size = 0;
1489 crb_size = 16;
1490 } else {
1491 cbb_size = 8;
1492 crb_size = 8;
1493 }
Philipp Zabel79924ca2014-07-23 12:28:45 -03001494 coda_write(dev, 2 << CODA9_CACHE_PAGEMERGE_OFFSET |
1495 32 << CODA9_CACHE_LUMA_BUFFER_SIZE_OFFSET |
Philipp Zabel1cb12cf2014-09-29 09:53:47 -03001496 cbb_size << CODA9_CACHE_CB_BUFFER_SIZE_OFFSET |
1497 crb_size << CODA9_CACHE_CR_BUFFER_SIZE_OFFSET,
Philipp Zabel79924ca2014-07-23 12:28:45 -03001498 CODA9_CMD_SET_FRAME_CACHE_CONFIG);
1499 }
1500
1501 if (src_fourcc == V4L2_PIX_FMT_H264) {
1502 coda_write(dev, ctx->slicebuf.paddr,
1503 CODA_CMD_SET_FRAME_SLICE_BB_START);
1504 coda_write(dev, ctx->slicebuf.size / 1024,
1505 CODA_CMD_SET_FRAME_SLICE_BB_SIZE);
1506 }
1507
1508 if (dev->devtype->product == CODA_7541) {
1509 int max_mb_x = 1920 / 16;
1510 int max_mb_y = 1088 / 16;
1511 int max_mb_num = max_mb_x * max_mb_y;
1512
1513 coda_write(dev, max_mb_num << 16 | max_mb_x << 8 | max_mb_y,
1514 CODA7_CMD_SET_FRAME_MAX_DEC_SIZE);
1515 } else if (dev->devtype->product == CODA_960) {
1516 int max_mb_x = 1920 / 16;
1517 int max_mb_y = 1088 / 16;
1518 int max_mb_num = max_mb_x * max_mb_y;
1519
1520 coda_write(dev, max_mb_num << 16 | max_mb_x << 8 | max_mb_y,
1521 CODA9_CMD_SET_FRAME_MAX_DEC_SIZE);
1522 }
1523
1524 if (coda_command_sync(ctx, CODA_COMMAND_SET_FRAME_BUF)) {
1525 v4l2_err(&ctx->dev->v4l2_dev,
1526 "CODA_COMMAND_SET_FRAME_BUF timeout\n");
1527 return -ETIMEDOUT;
1528 }
1529
1530 return 0;
1531}
1532
1533static int coda_start_decoding(struct coda_ctx *ctx)
1534{
1535 struct coda_dev *dev = ctx->dev;
1536 int ret;
1537
1538 mutex_lock(&dev->coda_mutex);
1539 ret = __coda_start_decoding(ctx);
1540 mutex_unlock(&dev->coda_mutex);
1541
1542 return ret;
1543}
1544
1545static int coda_prepare_decode(struct coda_ctx *ctx)
1546{
1547 struct vb2_buffer *dst_buf;
1548 struct coda_dev *dev = ctx->dev;
1549 struct coda_q_data *q_data_dst;
Philipp Zabel856d7d92014-09-29 09:53:44 -03001550 u32 reg_addr, reg_stride;
Philipp Zabel79924ca2014-07-23 12:28:45 -03001551
1552 dst_buf = v4l2_m2m_next_dst_buf(ctx->fh.m2m_ctx);
1553 q_data_dst = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_CAPTURE);
1554
Philipp Zabel79924ca2014-07-23 12:28:45 -03001555 /* Try to copy source buffer contents into the bitstream ringbuffer */
1556 mutex_lock(&ctx->bitstream_mutex);
1557 coda_fill_bitstream(ctx);
1558 mutex_unlock(&ctx->bitstream_mutex);
1559
1560 if (coda_get_bitstream_payload(ctx) < 512 &&
1561 (!(ctx->bit_stream_param & CODA_BIT_STREAM_END_FLAG))) {
1562 v4l2_dbg(1, coda_debug, &dev->v4l2_dev,
1563 "bitstream payload: %d, skipping\n",
1564 coda_get_bitstream_payload(ctx));
1565 v4l2_m2m_job_finish(ctx->dev->m2m_dev, ctx->fh.m2m_ctx);
1566 return -EAGAIN;
1567 }
1568
1569 /* Run coda_start_decoding (again) if not yet initialized */
1570 if (!ctx->initialized) {
1571 int ret = __coda_start_decoding(ctx);
1572
1573 if (ret < 0) {
1574 v4l2_err(&dev->v4l2_dev, "failed to start decoding\n");
1575 v4l2_m2m_job_finish(ctx->dev->m2m_dev, ctx->fh.m2m_ctx);
1576 return -EAGAIN;
1577 } else {
1578 ctx->initialized = 1;
1579 }
1580 }
1581
1582 if (dev->devtype->product == CODA_960)
1583 coda_set_gdi_regs(ctx);
1584
Philipp Zabel79924ca2014-07-23 12:28:45 -03001585 if (dev->devtype->product == CODA_960) {
1586 /*
1587 * The CODA960 seems to have an internal list of buffers with
1588 * 64 entries that includes the registered frame buffers as
1589 * well as the rotator buffer output.
1590 * ROT_INDEX needs to be < 0x40, but > ctx->num_internal_frames.
1591 */
1592 coda_write(dev, CODA_MAX_FRAMEBUFFERS + dst_buf->v4l2_buf.index,
1593 CODA9_CMD_DEC_PIC_ROT_INDEX);
Philipp Zabel856d7d92014-09-29 09:53:44 -03001594
1595 reg_addr = CODA9_CMD_DEC_PIC_ROT_ADDR_Y;
1596 reg_stride = CODA9_CMD_DEC_PIC_ROT_STRIDE;
Philipp Zabel79924ca2014-07-23 12:28:45 -03001597 } else {
Philipp Zabel856d7d92014-09-29 09:53:44 -03001598 reg_addr = CODA_CMD_DEC_PIC_ROT_ADDR_Y;
1599 reg_stride = CODA_CMD_DEC_PIC_ROT_STRIDE;
Philipp Zabel79924ca2014-07-23 12:28:45 -03001600 }
Philipp Zabel856d7d92014-09-29 09:53:44 -03001601 coda_write_base(ctx, q_data_dst, dst_buf, reg_addr);
1602 coda_write(dev, q_data_dst->bytesperline, reg_stride);
1603
Philipp Zabel79924ca2014-07-23 12:28:45 -03001604 coda_write(dev, CODA_ROT_MIR_ENABLE | ctx->params.rot_mode,
1605 CODA_CMD_DEC_PIC_ROT_MODE);
1606
1607 switch (dev->devtype->product) {
1608 case CODA_DX6:
1609 /* TBD */
1610 case CODA_7541:
1611 coda_write(dev, CODA_PRE_SCAN_EN, CODA_CMD_DEC_PIC_OPTION);
1612 break;
1613 case CODA_960:
Philipp Zabelf23797b2014-08-06 08:02:23 -03001614 /* 'hardcode to use interrupt disable mode'? */
1615 coda_write(dev, (1 << 10), CODA_CMD_DEC_PIC_OPTION);
Philipp Zabel79924ca2014-07-23 12:28:45 -03001616 break;
1617 }
1618
1619 coda_write(dev, 0, CODA_CMD_DEC_PIC_SKIP_NUM);
1620
1621 coda_write(dev, 0, CODA_CMD_DEC_PIC_BB_START);
1622 coda_write(dev, 0, CODA_CMD_DEC_PIC_START_BYTE);
1623
1624 if (dev->devtype->product != CODA_DX6)
1625 coda_write(dev, ctx->iram_info.axi_sram_use,
1626 CODA7_REG_BIT_AXI_SRAM_USE);
1627
Philipp Zabel5269aed2014-10-02 14:08:33 -03001628 if (ctx->codec->src_fourcc == V4L2_PIX_FMT_JPEG) {
1629 struct coda_buffer_meta *meta;
1630
1631 /* If this is the last buffer in the bitstream, add padding */
1632 meta = list_first_entry(&ctx->buffer_meta_list,
1633 struct coda_buffer_meta, list);
1634 if (meta->end == (ctx->bitstream_fifo.kfifo.in &
1635 ctx->bitstream_fifo.kfifo.mask)) {
1636 static unsigned char buf[512];
1637 unsigned int pad;
1638
1639 /* Pad to multiple of 256 and then add 256 more */
1640 pad = ((0 - meta->end) & 0xff) + 256;
1641
1642 memset(buf, 0xff, sizeof(buf));
1643
1644 kfifo_in(&ctx->bitstream_fifo, buf, pad);
1645 }
1646 }
1647
Philipp Zabel79924ca2014-07-23 12:28:45 -03001648 coda_kfifo_sync_to_device_full(ctx);
1649
1650 coda_command_async(ctx, CODA_COMMAND_PIC_RUN);
1651
1652 return 0;
1653}
1654
1655static void coda_finish_decode(struct coda_ctx *ctx)
1656{
1657 struct coda_dev *dev = ctx->dev;
1658 struct coda_q_data *q_data_src;
1659 struct coda_q_data *q_data_dst;
1660 struct vb2_buffer *dst_buf;
Philipp Zabel7cbb1052014-10-02 14:08:32 -03001661 struct coda_buffer_meta *meta;
Philipp Zabel4de69312014-10-02 14:08:26 -03001662 unsigned long payload;
Philipp Zabel79924ca2014-07-23 12:28:45 -03001663 int width, height;
1664 int decoded_idx;
1665 int display_idx;
1666 u32 src_fourcc;
1667 int success;
1668 u32 err_mb;
1669 u32 val;
1670
Philipp Zabel79924ca2014-07-23 12:28:45 -03001671 /* Update kfifo out pointer from coda bitstream read pointer */
1672 coda_kfifo_sync_from_device(ctx);
1673
1674 /*
1675 * in stream-end mode, the read pointer can overshoot the write pointer
1676 * by up to 512 bytes
1677 */
1678 if (ctx->bit_stream_param & CODA_BIT_STREAM_END_FLAG) {
1679 if (coda_get_bitstream_payload(ctx) >= CODA_MAX_FRAME_SIZE - 512)
1680 kfifo_init(&ctx->bitstream_fifo,
1681 ctx->bitstream.vaddr, ctx->bitstream.size);
1682 }
1683
1684 q_data_src = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_OUTPUT);
1685 src_fourcc = q_data_src->fourcc;
1686
1687 val = coda_read(dev, CODA_RET_DEC_PIC_SUCCESS);
1688 if (val != 1)
1689 pr_err("DEC_PIC_SUCCESS = %d\n", val);
1690
1691 success = val & 0x1;
1692 if (!success)
1693 v4l2_err(&dev->v4l2_dev, "decode failed\n");
1694
1695 if (src_fourcc == V4L2_PIX_FMT_H264) {
1696 if (val & (1 << 3))
1697 v4l2_err(&dev->v4l2_dev,
1698 "insufficient PS buffer space (%d bytes)\n",
1699 ctx->psbuf.size);
1700 if (val & (1 << 2))
1701 v4l2_err(&dev->v4l2_dev,
1702 "insufficient slice buffer space (%d bytes)\n",
1703 ctx->slicebuf.size);
1704 }
1705
1706 val = coda_read(dev, CODA_RET_DEC_PIC_SIZE);
1707 width = (val >> 16) & 0xffff;
1708 height = val & 0xffff;
1709
1710 q_data_dst = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_CAPTURE);
1711
1712 /* frame crop information */
1713 if (src_fourcc == V4L2_PIX_FMT_H264) {
1714 u32 left_right;
1715 u32 top_bottom;
1716
1717 left_right = coda_read(dev, CODA_RET_DEC_PIC_CROP_LEFT_RIGHT);
1718 top_bottom = coda_read(dev, CODA_RET_DEC_PIC_CROP_TOP_BOTTOM);
1719
1720 if (left_right == 0xffffffff && top_bottom == 0xffffffff) {
1721 /* Keep current crop information */
1722 } else {
1723 struct v4l2_rect *rect = &q_data_dst->rect;
1724
1725 rect->left = left_right >> 16 & 0xffff;
1726 rect->top = top_bottom >> 16 & 0xffff;
1727 rect->width = width - rect->left -
1728 (left_right & 0xffff);
1729 rect->height = height - rect->top -
1730 (top_bottom & 0xffff);
1731 }
1732 } else {
1733 /* no cropping */
1734 }
1735
1736 err_mb = coda_read(dev, CODA_RET_DEC_PIC_ERR_MB);
1737 if (err_mb > 0)
1738 v4l2_err(&dev->v4l2_dev,
1739 "errors in %d macroblocks\n", err_mb);
1740
1741 if (dev->devtype->product == CODA_7541) {
1742 val = coda_read(dev, CODA_RET_DEC_PIC_OPTION);
1743 if (val == 0) {
1744 /* not enough bitstream data */
1745 v4l2_dbg(1, coda_debug, &dev->v4l2_dev,
1746 "prescan failed: %d\n", val);
1747 ctx->hold = true;
1748 return;
1749 }
1750 }
1751
Philipp Zabelf23797b2014-08-06 08:02:23 -03001752 ctx->frm_dis_flg = coda_read(dev,
1753 CODA_REG_BIT_FRM_DIS_FLG(ctx->reg_idx));
Philipp Zabel79924ca2014-07-23 12:28:45 -03001754
1755 /*
1756 * The previous display frame was copied out by the rotator,
1757 * now it can be overwritten again
1758 */
1759 if (ctx->display_idx >= 0 &&
1760 ctx->display_idx < ctx->num_internal_frames) {
1761 ctx->frm_dis_flg &= ~(1 << ctx->display_idx);
1762 coda_write(dev, ctx->frm_dis_flg,
1763 CODA_REG_BIT_FRM_DIS_FLG(ctx->reg_idx));
1764 }
1765
1766 /*
1767 * The index of the last decoded frame, not necessarily in
1768 * display order, and the index of the next display frame.
1769 * The latter could have been decoded in a previous run.
1770 */
1771 decoded_idx = coda_read(dev, CODA_RET_DEC_PIC_CUR_IDX);
1772 display_idx = coda_read(dev, CODA_RET_DEC_PIC_FRAME_IDX);
1773
1774 if (decoded_idx == -1) {
1775 /* no frame was decoded, but we might have a display frame */
1776 if (display_idx >= 0 && display_idx < ctx->num_internal_frames)
1777 ctx->sequence_offset++;
1778 else if (ctx->display_idx < 0)
1779 ctx->hold = true;
1780 } else if (decoded_idx == -2) {
Philipp Zabelf23797b2014-08-06 08:02:23 -03001781 /* no frame was decoded, we still return remaining buffers */
Philipp Zabel79924ca2014-07-23 12:28:45 -03001782 } else if (decoded_idx < 0 || decoded_idx >= ctx->num_internal_frames) {
1783 v4l2_err(&dev->v4l2_dev,
1784 "decoded frame index out of range: %d\n", decoded_idx);
1785 } else {
Philipp Zabel79924ca2014-07-23 12:28:45 -03001786 val = coda_read(dev, CODA_RET_DEC_PIC_FRAME_NUM) - 1;
1787 val -= ctx->sequence_offset;
Philipp Zabel18fd0cc2014-08-05 14:00:17 -03001788 mutex_lock(&ctx->bitstream_mutex);
Philipp Zabel7cbb1052014-10-02 14:08:32 -03001789 if (!list_empty(&ctx->buffer_meta_list)) {
1790 meta = list_first_entry(&ctx->buffer_meta_list,
1791 struct coda_buffer_meta, list);
1792 list_del(&meta->list);
1793 if (val != (meta->sequence & 0xffff)) {
Philipp Zabel18fd0cc2014-08-05 14:00:17 -03001794 v4l2_err(&dev->v4l2_dev,
1795 "sequence number mismatch (%d(%d) != %d)\n",
1796 val, ctx->sequence_offset,
Philipp Zabel7cbb1052014-10-02 14:08:32 -03001797 meta->sequence);
Philipp Zabel18fd0cc2014-08-05 14:00:17 -03001798 }
Philipp Zabel7cbb1052014-10-02 14:08:32 -03001799 ctx->frame_metas[decoded_idx] = *meta;
1800 kfree(meta);
Philipp Zabel18fd0cc2014-08-05 14:00:17 -03001801 } else {
1802 v4l2_err(&dev->v4l2_dev, "empty timestamp list!\n");
Philipp Zabel7cbb1052014-10-02 14:08:32 -03001803 memset(&ctx->frame_metas[decoded_idx], 0,
1804 sizeof(struct coda_buffer_meta));
1805 ctx->frame_metas[decoded_idx].sequence = val;
Philipp Zabel79924ca2014-07-23 12:28:45 -03001806 }
Philipp Zabel18fd0cc2014-08-05 14:00:17 -03001807 mutex_unlock(&ctx->bitstream_mutex);
Philipp Zabel79924ca2014-07-23 12:28:45 -03001808
1809 val = coda_read(dev, CODA_RET_DEC_PIC_TYPE) & 0x7;
1810 if (val == 0)
1811 ctx->frame_types[decoded_idx] = V4L2_BUF_FLAG_KEYFRAME;
1812 else if (val == 1)
1813 ctx->frame_types[decoded_idx] = V4L2_BUF_FLAG_PFRAME;
1814 else
1815 ctx->frame_types[decoded_idx] = V4L2_BUF_FLAG_BFRAME;
1816
1817 ctx->frame_errors[decoded_idx] = err_mb;
1818 }
1819
1820 if (display_idx == -1) {
1821 /*
1822 * no more frames to be decoded, but there could still
1823 * be rotator output to dequeue
1824 */
1825 ctx->hold = true;
1826 } else if (display_idx == -3) {
1827 /* possibly prescan failure */
1828 } else if (display_idx < 0 || display_idx >= ctx->num_internal_frames) {
1829 v4l2_err(&dev->v4l2_dev,
1830 "presentation frame index out of range: %d\n",
1831 display_idx);
1832 }
1833
1834 /* If a frame was copied out, return it */
1835 if (ctx->display_idx >= 0 &&
1836 ctx->display_idx < ctx->num_internal_frames) {
1837 dst_buf = v4l2_m2m_dst_buf_remove(ctx->fh.m2m_ctx);
1838 dst_buf->v4l2_buf.sequence = ctx->osequence++;
1839
1840 dst_buf->v4l2_buf.flags &= ~(V4L2_BUF_FLAG_KEYFRAME |
1841 V4L2_BUF_FLAG_PFRAME |
1842 V4L2_BUF_FLAG_BFRAME);
1843 dst_buf->v4l2_buf.flags |= ctx->frame_types[ctx->display_idx];
Philipp Zabel7cbb1052014-10-02 14:08:32 -03001844 meta = &ctx->frame_metas[ctx->display_idx];
1845 dst_buf->v4l2_buf.timecode = meta->timecode;
1846 dst_buf->v4l2_buf.timestamp = meta->timestamp;
Philipp Zabel79924ca2014-07-23 12:28:45 -03001847
Philipp Zabel4de69312014-10-02 14:08:26 -03001848 switch (q_data_dst->fourcc) {
1849 case V4L2_PIX_FMT_YUV420:
1850 case V4L2_PIX_FMT_YVU420:
1851 case V4L2_PIX_FMT_NV12:
1852 default:
1853 payload = width * height * 3 / 2;
1854 break;
1855 case V4L2_PIX_FMT_YUV422P:
1856 payload = width * height * 2;
1857 break;
1858 }
1859 vb2_set_plane_payload(dst_buf, 0, payload);
Philipp Zabel79924ca2014-07-23 12:28:45 -03001860
1861 v4l2_m2m_buf_done(dst_buf, ctx->frame_errors[display_idx] ?
1862 VB2_BUF_STATE_ERROR : VB2_BUF_STATE_DONE);
1863
1864 v4l2_dbg(1, coda_debug, &dev->v4l2_dev,
1865 "job finished: decoding frame (%d) (%s)\n",
1866 dst_buf->v4l2_buf.sequence,
1867 (dst_buf->v4l2_buf.flags & V4L2_BUF_FLAG_KEYFRAME) ?
1868 "KEYFRAME" : "PFRAME");
1869 } else {
1870 v4l2_dbg(1, coda_debug, &dev->v4l2_dev,
1871 "job finished: no frame decoded\n");
1872 }
1873
1874 /* The rotator will copy the current display frame next time */
1875 ctx->display_idx = display_idx;
1876}
1877
1878const struct coda_context_ops coda_bit_decode_ops = {
1879 .queue_init = coda_decoder_queue_init,
1880 .start_streaming = coda_start_decoding,
1881 .prepare_run = coda_prepare_decode,
1882 .finish_run = coda_finish_decode,
1883 .seq_end_work = coda_seq_end_work,
1884 .release = coda_bit_release,
1885};
1886
1887irqreturn_t coda_irq_handler(int irq, void *data)
1888{
1889 struct coda_dev *dev = data;
1890 struct coda_ctx *ctx;
1891
1892 /* read status register to attend the IRQ */
1893 coda_read(dev, CODA_REG_BIT_INT_STATUS);
1894 coda_write(dev, CODA_REG_BIT_INT_CLEAR_SET,
1895 CODA_REG_BIT_INT_CLEAR);
1896
1897 ctx = v4l2_m2m_get_curr_priv(dev->m2m_dev);
1898 if (ctx == NULL) {
Philipp Zabelf23797b2014-08-06 08:02:23 -03001899 v4l2_err(&dev->v4l2_dev,
1900 "Instance released before the end of transaction\n");
Philipp Zabel79924ca2014-07-23 12:28:45 -03001901 mutex_unlock(&dev->coda_mutex);
1902 return IRQ_HANDLED;
1903 }
1904
1905 if (ctx->aborting) {
1906 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
1907 "task has been aborted\n");
1908 }
1909
1910 if (coda_isbusy(ctx->dev)) {
1911 v4l2_dbg(1, coda_debug, &ctx->dev->v4l2_dev,
1912 "coda is still busy!!!!\n");
1913 return IRQ_NONE;
1914 }
1915
1916 complete(&ctx->completion);
1917
1918 return IRQ_HANDLED;
1919}