2 * Coda multi-standard codec IP - BIT processor functions
4 * Copyright (C) 2012 Vista Silicon S.L.
5 * Javier Martin, <javier.martin@vista-silicon.com>
7 * Copyright (C) 2012-2014 Philipp Zabel, Pengutronix
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.
15 #include <linux/clk.h>
16 #include <linux/irqreturn.h>
17 #include <linux/kernel.h>
18 #include <linux/log2.h>
19 #include <linux/platform_device.h>
20 #include <linux/reset.h>
21 #include <linux/slab.h>
22 #include <linux/videodev2.h>
24 #include <media/v4l2-common.h>
25 #include <media/v4l2-ctrls.h>
26 #include <media/v4l2-fh.h>
27 #include <media/v4l2-mem2mem.h>
28 #include <media/videobuf2-v4l2.h>
29 #include <media/videobuf2-dma-contig.h>
30 #include <media/videobuf2-vmalloc.h>
34 #define CREATE_TRACE_POINTS
37 #define CODA_PARA_BUF_SIZE (10 * 1024)
38 #define CODA7_PS_BUF_SIZE 0x28000
39 #define CODA9_PS_SAVE_SIZE (512 * 1024)
41 #define CODA_DEFAULT_GAMMA 4096
42 #define CODA9_DEFAULT_GAMMA 24576 /* 0.75 * 32768 */
44 static void coda_free_bitstream_buffer(struct coda_ctx
*ctx
);
46 static inline int coda_is_initialized(struct coda_dev
*dev
)
48 return coda_read(dev
, CODA_REG_BIT_CUR_PC
) != 0;
51 static inline unsigned long coda_isbusy(struct coda_dev
*dev
)
53 return coda_read(dev
, CODA_REG_BIT_BUSY
);
56 static int coda_wait_timeout(struct coda_dev
*dev
)
58 unsigned long timeout
= jiffies
+ msecs_to_jiffies(1000);
60 while (coda_isbusy(dev
)) {
61 if (time_after(jiffies
, timeout
))
67 static void coda_command_async(struct coda_ctx
*ctx
, int cmd
)
69 struct coda_dev
*dev
= ctx
->dev
;
71 if (dev
->devtype
->product
== CODA_HX4
||
72 dev
->devtype
->product
== CODA_7541
||
73 dev
->devtype
->product
== CODA_960
) {
74 /* Restore context related registers to CODA */
75 coda_write(dev
, ctx
->bit_stream_param
,
76 CODA_REG_BIT_BIT_STREAM_PARAM
);
77 coda_write(dev
, ctx
->frm_dis_flg
,
78 CODA_REG_BIT_FRM_DIS_FLG(ctx
->reg_idx
));
79 coda_write(dev
, ctx
->frame_mem_ctrl
,
80 CODA_REG_BIT_FRAME_MEM_CTRL
);
81 coda_write(dev
, ctx
->workbuf
.paddr
, CODA_REG_BIT_WORK_BUF_ADDR
);
84 if (dev
->devtype
->product
== CODA_960
) {
85 coda_write(dev
, 1, CODA9_GDI_WPROT_ERR_CLR
);
86 coda_write(dev
, 0, CODA9_GDI_WPROT_RGN_EN
);
89 coda_write(dev
, CODA_REG_BIT_BUSY_FLAG
, CODA_REG_BIT_BUSY
);
91 coda_write(dev
, ctx
->idx
, CODA_REG_BIT_RUN_INDEX
);
92 coda_write(dev
, ctx
->params
.codec_mode
, CODA_REG_BIT_RUN_COD_STD
);
93 coda_write(dev
, ctx
->params
.codec_mode_aux
, CODA7_REG_BIT_RUN_AUX_STD
);
95 trace_coda_bit_run(ctx
, cmd
);
97 coda_write(dev
, cmd
, CODA_REG_BIT_RUN_COMMAND
);
100 static int coda_command_sync(struct coda_ctx
*ctx
, int cmd
)
102 struct coda_dev
*dev
= ctx
->dev
;
105 coda_command_async(ctx
, cmd
);
106 ret
= coda_wait_timeout(dev
);
107 trace_coda_bit_done(ctx
);
112 int coda_hw_reset(struct coda_ctx
*ctx
)
114 struct coda_dev
*dev
= ctx
->dev
;
115 unsigned long timeout
;
122 idx
= coda_read(dev
, CODA_REG_BIT_RUN_INDEX
);
124 if (dev
->devtype
->product
== CODA_960
) {
125 timeout
= jiffies
+ msecs_to_jiffies(100);
126 coda_write(dev
, 0x11, CODA9_GDI_BUS_CTRL
);
127 while (coda_read(dev
, CODA9_GDI_BUS_STATUS
) != 0x77) {
128 if (time_after(jiffies
, timeout
))
134 ret
= reset_control_reset(dev
->rstc
);
138 if (dev
->devtype
->product
== CODA_960
)
139 coda_write(dev
, 0x00, CODA9_GDI_BUS_CTRL
);
140 coda_write(dev
, CODA_REG_BIT_BUSY_FLAG
, CODA_REG_BIT_BUSY
);
141 coda_write(dev
, CODA_REG_RUN_ENABLE
, CODA_REG_BIT_CODE_RUN
);
142 ret
= coda_wait_timeout(dev
);
143 coda_write(dev
, idx
, CODA_REG_BIT_RUN_INDEX
);
148 static void coda_kfifo_sync_from_device(struct coda_ctx
*ctx
)
150 struct __kfifo
*kfifo
= &ctx
->bitstream_fifo
.kfifo
;
151 struct coda_dev
*dev
= ctx
->dev
;
154 rd_ptr
= coda_read(dev
, CODA_REG_BIT_RD_PTR(ctx
->reg_idx
));
155 kfifo
->out
= (kfifo
->in
& ~kfifo
->mask
) |
156 (rd_ptr
- ctx
->bitstream
.paddr
);
157 if (kfifo
->out
> kfifo
->in
)
158 kfifo
->out
-= kfifo
->mask
+ 1;
161 static void coda_kfifo_sync_to_device_full(struct coda_ctx
*ctx
)
163 struct __kfifo
*kfifo
= &ctx
->bitstream_fifo
.kfifo
;
164 struct coda_dev
*dev
= ctx
->dev
;
167 rd_ptr
= ctx
->bitstream
.paddr
+ (kfifo
->out
& kfifo
->mask
);
168 coda_write(dev
, rd_ptr
, CODA_REG_BIT_RD_PTR(ctx
->reg_idx
));
169 wr_ptr
= ctx
->bitstream
.paddr
+ (kfifo
->in
& kfifo
->mask
);
170 coda_write(dev
, wr_ptr
, CODA_REG_BIT_WR_PTR(ctx
->reg_idx
));
173 static void coda_kfifo_sync_to_device_write(struct coda_ctx
*ctx
)
175 struct __kfifo
*kfifo
= &ctx
->bitstream_fifo
.kfifo
;
176 struct coda_dev
*dev
= ctx
->dev
;
179 wr_ptr
= ctx
->bitstream
.paddr
+ (kfifo
->in
& kfifo
->mask
);
180 coda_write(dev
, wr_ptr
, CODA_REG_BIT_WR_PTR(ctx
->reg_idx
));
183 static int coda_bitstream_pad(struct coda_ctx
*ctx
, u32 size
)
191 buf
= kmalloc(size
, GFP_KERNEL
);
195 coda_h264_filler_nal(size
, buf
);
196 n
= kfifo_in(&ctx
->bitstream_fifo
, buf
, size
);
199 return (n
< size
) ? -ENOSPC
: 0;
202 static int coda_bitstream_queue(struct coda_ctx
*ctx
,
203 struct vb2_v4l2_buffer
*src_buf
)
205 u32 src_size
= vb2_get_plane_payload(&src_buf
->vb2_buf
, 0);
208 n
= kfifo_in(&ctx
->bitstream_fifo
,
209 vb2_plane_vaddr(&src_buf
->vb2_buf
, 0), src_size
);
213 src_buf
->sequence
= ctx
->qsequence
++;
218 static bool coda_bitstream_try_queue(struct coda_ctx
*ctx
,
219 struct vb2_v4l2_buffer
*src_buf
)
221 unsigned long payload
= vb2_get_plane_payload(&src_buf
->vb2_buf
, 0);
224 if (coda_get_bitstream_payload(ctx
) + payload
+ 512 >=
228 if (vb2_plane_vaddr(&src_buf
->vb2_buf
, 0) == NULL
) {
229 v4l2_err(&ctx
->dev
->v4l2_dev
, "trying to queue empty buffer\n");
233 /* Add zero padding before the first H.264 buffer, if it is too small */
234 if (ctx
->qsequence
== 0 && payload
< 512 &&
235 ctx
->codec
->src_fourcc
== V4L2_PIX_FMT_H264
)
236 coda_bitstream_pad(ctx
, 512 - payload
);
238 ret
= coda_bitstream_queue(ctx
, src_buf
);
240 v4l2_err(&ctx
->dev
->v4l2_dev
, "bitstream buffer overflow\n");
243 /* Sync read pointer to device */
244 if (ctx
== v4l2_m2m_get_curr_priv(ctx
->dev
->m2m_dev
))
245 coda_kfifo_sync_to_device_write(ctx
);
252 void coda_fill_bitstream(struct coda_ctx
*ctx
, struct list_head
*buffer_list
)
254 struct vb2_v4l2_buffer
*src_buf
;
255 struct coda_buffer_meta
*meta
;
259 if (ctx
->bit_stream_param
& CODA_BIT_STREAM_END_FLAG
)
262 while (v4l2_m2m_num_src_bufs_ready(ctx
->fh
.m2m_ctx
) > 0) {
264 * Only queue two JPEGs into the bitstream buffer to keep
265 * latency low. We need at least one complete buffer and the
266 * header of another buffer (for prescan) in the bitstream.
268 if (ctx
->codec
->src_fourcc
== V4L2_PIX_FMT_JPEG
&&
272 src_buf
= v4l2_m2m_next_src_buf(ctx
->fh
.m2m_ctx
);
274 /* Drop frames that do not start/end with a SOI/EOI markers */
275 if (ctx
->codec
->src_fourcc
== V4L2_PIX_FMT_JPEG
&&
276 !coda_jpeg_check_buffer(ctx
, &src_buf
->vb2_buf
)) {
277 v4l2_err(&ctx
->dev
->v4l2_dev
,
278 "dropping invalid JPEG frame %d\n",
280 src_buf
= v4l2_m2m_src_buf_remove(ctx
->fh
.m2m_ctx
);
282 struct v4l2_m2m_buffer
*m2m_buf
;
284 m2m_buf
= container_of(src_buf
,
285 struct v4l2_m2m_buffer
,
287 list_add_tail(&m2m_buf
->list
, buffer_list
);
289 v4l2_m2m_buf_done(src_buf
, VB2_BUF_STATE_ERROR
);
294 /* Dump empty buffers */
295 if (!vb2_get_plane_payload(&src_buf
->vb2_buf
, 0)) {
296 src_buf
= v4l2_m2m_src_buf_remove(ctx
->fh
.m2m_ctx
);
297 v4l2_m2m_buf_done(src_buf
, VB2_BUF_STATE_DONE
);
301 /* Buffer start position */
302 start
= ctx
->bitstream_fifo
.kfifo
.in
&
303 ctx
->bitstream_fifo
.kfifo
.mask
;
305 if (coda_bitstream_try_queue(ctx
, src_buf
)) {
307 * Source buffer is queued in the bitstream ringbuffer;
308 * queue the timestamp and mark source buffer as done
310 src_buf
= v4l2_m2m_src_buf_remove(ctx
->fh
.m2m_ctx
);
312 meta
= kmalloc(sizeof(*meta
), GFP_KERNEL
);
314 meta
->sequence
= src_buf
->sequence
;
315 meta
->timecode
= src_buf
->timecode
;
316 meta
->timestamp
= src_buf
->vb2_buf
.timestamp
;
318 meta
->end
= ctx
->bitstream_fifo
.kfifo
.in
&
319 ctx
->bitstream_fifo
.kfifo
.mask
;
320 spin_lock_irqsave(&ctx
->buffer_meta_lock
,
322 list_add_tail(&meta
->list
,
323 &ctx
->buffer_meta_list
);
325 spin_unlock_irqrestore(&ctx
->buffer_meta_lock
,
328 trace_coda_bit_queue(ctx
, src_buf
, meta
);
332 struct v4l2_m2m_buffer
*m2m_buf
;
334 m2m_buf
= container_of(src_buf
,
335 struct v4l2_m2m_buffer
,
337 list_add_tail(&m2m_buf
->list
, buffer_list
);
339 v4l2_m2m_buf_done(src_buf
, VB2_BUF_STATE_DONE
);
347 void coda_bit_stream_end_flag(struct coda_ctx
*ctx
)
349 struct coda_dev
*dev
= ctx
->dev
;
351 ctx
->bit_stream_param
|= CODA_BIT_STREAM_END_FLAG
;
353 /* If this context is currently running, update the hardware flag */
354 if ((dev
->devtype
->product
== CODA_960
) &&
356 (ctx
->idx
== coda_read(dev
, CODA_REG_BIT_RUN_INDEX
))) {
357 coda_write(dev
, ctx
->bit_stream_param
,
358 CODA_REG_BIT_BIT_STREAM_PARAM
);
362 static void coda_parabuf_write(struct coda_ctx
*ctx
, int index
, u32 value
)
364 struct coda_dev
*dev
= ctx
->dev
;
365 u32
*p
= ctx
->parabuf
.vaddr
;
367 if (dev
->devtype
->product
== CODA_DX6
)
370 p
[index
^ 1] = value
;
373 static inline int coda_alloc_context_buf(struct coda_ctx
*ctx
,
374 struct coda_aux_buf
*buf
, size_t size
,
377 return coda_alloc_aux_buf(ctx
->dev
, buf
, size
, name
, ctx
->debugfs_entry
);
381 static void coda_free_framebuffers(struct coda_ctx
*ctx
)
385 for (i
= 0; i
< CODA_MAX_FRAMEBUFFERS
; i
++)
386 coda_free_aux_buf(ctx
->dev
, &ctx
->internal_frames
[i
]);
389 static int coda_alloc_framebuffers(struct coda_ctx
*ctx
,
390 struct coda_q_data
*q_data
, u32 fourcc
)
392 struct coda_dev
*dev
= ctx
->dev
;
393 unsigned int ysize
, ycbcr_size
;
397 if (ctx
->codec
->src_fourcc
== V4L2_PIX_FMT_H264
||
398 ctx
->codec
->dst_fourcc
== V4L2_PIX_FMT_H264
||
399 ctx
->codec
->src_fourcc
== V4L2_PIX_FMT_MPEG4
||
400 ctx
->codec
->dst_fourcc
== V4L2_PIX_FMT_MPEG4
)
401 ysize
= round_up(q_data
->rect
.width
, 16) *
402 round_up(q_data
->rect
.height
, 16);
404 ysize
= round_up(q_data
->rect
.width
, 8) * q_data
->rect
.height
;
406 if (ctx
->tiled_map_type
== GDI_TILED_FRAME_MB_RASTER_MAP
)
407 ycbcr_size
= round_up(ysize
, 4096) + ysize
/ 2;
409 ycbcr_size
= ysize
+ ysize
/ 2;
411 /* Allocate frame buffers */
412 for (i
= 0; i
< ctx
->num_internal_frames
; i
++) {
413 size_t size
= ycbcr_size
;
416 /* Add space for mvcol buffers */
417 if (dev
->devtype
->product
!= CODA_DX6
&&
418 (ctx
->codec
->src_fourcc
== V4L2_PIX_FMT_H264
||
419 (ctx
->codec
->src_fourcc
== V4L2_PIX_FMT_MPEG4
&& i
== 0)))
421 name
= kasprintf(GFP_KERNEL
, "fb%d", i
);
423 coda_free_framebuffers(ctx
);
426 ret
= coda_alloc_context_buf(ctx
, &ctx
->internal_frames
[i
],
430 coda_free_framebuffers(ctx
);
435 /* Register frame buffers in the parameter buffer */
436 for (i
= 0; i
< ctx
->num_internal_frames
; i
++) {
437 u32 y
, cb
, cr
, mvcol
;
439 /* Start addresses of Y, Cb, Cr planes */
440 y
= ctx
->internal_frames
[i
].paddr
;
442 cr
= y
+ ysize
+ ysize
/4;
443 mvcol
= y
+ ysize
+ ysize
/4 + ysize
/4;
444 if (ctx
->tiled_map_type
== GDI_TILED_FRAME_MB_RASTER_MAP
) {
445 cb
= round_up(cb
, 4096);
446 mvcol
= cb
+ ysize
/2;
448 /* Packed 20-bit MSB of base addresses */
449 /* YYYYYCCC, CCyyyyyc, cccc.... */
450 y
= (y
& 0xfffff000) | cb
>> 20;
451 cb
= (cb
& 0x000ff000) << 12;
453 coda_parabuf_write(ctx
, i
* 3 + 0, y
);
454 coda_parabuf_write(ctx
, i
* 3 + 1, cb
);
455 coda_parabuf_write(ctx
, i
* 3 + 2, cr
);
457 if (dev
->devtype
->product
== CODA_DX6
)
460 /* mvcol buffer for h.264 and mpeg4 */
461 if (ctx
->codec
->src_fourcc
== V4L2_PIX_FMT_H264
)
462 coda_parabuf_write(ctx
, 96 + i
, mvcol
);
463 if (ctx
->codec
->src_fourcc
== V4L2_PIX_FMT_MPEG4
&& i
== 0)
464 coda_parabuf_write(ctx
, 97, mvcol
);
470 static void coda_free_context_buffers(struct coda_ctx
*ctx
)
472 struct coda_dev
*dev
= ctx
->dev
;
474 coda_free_aux_buf(dev
, &ctx
->slicebuf
);
475 coda_free_aux_buf(dev
, &ctx
->psbuf
);
476 if (dev
->devtype
->product
!= CODA_DX6
)
477 coda_free_aux_buf(dev
, &ctx
->workbuf
);
478 coda_free_aux_buf(dev
, &ctx
->parabuf
);
481 static int coda_alloc_context_buffers(struct coda_ctx
*ctx
,
482 struct coda_q_data
*q_data
)
484 struct coda_dev
*dev
= ctx
->dev
;
488 if (!ctx
->parabuf
.vaddr
) {
489 ret
= coda_alloc_context_buf(ctx
, &ctx
->parabuf
,
490 CODA_PARA_BUF_SIZE
, "parabuf");
495 if (dev
->devtype
->product
== CODA_DX6
)
498 if (!ctx
->slicebuf
.vaddr
&& q_data
->fourcc
== V4L2_PIX_FMT_H264
) {
499 /* worst case slice size */
500 size
= (DIV_ROUND_UP(q_data
->rect
.width
, 16) *
501 DIV_ROUND_UP(q_data
->rect
.height
, 16)) * 3200 / 8 + 512;
502 ret
= coda_alloc_context_buf(ctx
, &ctx
->slicebuf
, size
,
508 if (!ctx
->psbuf
.vaddr
&& (dev
->devtype
->product
== CODA_HX4
||
509 dev
->devtype
->product
== CODA_7541
)) {
510 ret
= coda_alloc_context_buf(ctx
, &ctx
->psbuf
,
511 CODA7_PS_BUF_SIZE
, "psbuf");
516 if (!ctx
->workbuf
.vaddr
) {
517 size
= dev
->devtype
->workbuf_size
;
518 if (dev
->devtype
->product
== CODA_960
&&
519 q_data
->fourcc
== V4L2_PIX_FMT_H264
)
520 size
+= CODA9_PS_SAVE_SIZE
;
521 ret
= coda_alloc_context_buf(ctx
, &ctx
->workbuf
, size
,
530 coda_free_context_buffers(ctx
);
534 static int coda_encode_header(struct coda_ctx
*ctx
, struct vb2_v4l2_buffer
*buf
,
535 int header_code
, u8
*header
, int *size
)
537 struct vb2_buffer
*vb
= &buf
->vb2_buf
;
538 struct coda_dev
*dev
= ctx
->dev
;
539 struct coda_q_data
*q_data_src
;
545 if (dev
->devtype
->product
== CODA_960
)
546 memset(vb2_plane_vaddr(vb
, 0), 0, 64);
548 coda_write(dev
, vb2_dma_contig_plane_dma_addr(vb
, 0),
549 CODA_CMD_ENC_HEADER_BB_START
);
550 bufsize
= vb2_plane_size(vb
, 0);
551 if (dev
->devtype
->product
== CODA_960
)
553 coda_write(dev
, bufsize
, CODA_CMD_ENC_HEADER_BB_SIZE
);
554 if (dev
->devtype
->product
== CODA_960
&&
555 ctx
->codec
->dst_fourcc
== V4L2_PIX_FMT_H264
&&
556 header_code
== CODA_HEADER_H264_SPS
) {
557 q_data_src
= get_q_data(ctx
, V4L2_BUF_TYPE_VIDEO_OUTPUT
);
558 r
= &q_data_src
->rect
;
560 if (r
->width
% 16 || r
->height
% 16) {
561 u32 crop_right
= round_up(r
->width
, 16) - r
->width
;
562 u32 crop_bottom
= round_up(r
->height
, 16) - r
->height
;
564 coda_write(dev
, crop_right
,
565 CODA9_CMD_ENC_HEADER_FRAME_CROP_H
);
566 coda_write(dev
, crop_bottom
,
567 CODA9_CMD_ENC_HEADER_FRAME_CROP_V
);
568 header_code
|= CODA9_HEADER_FRAME_CROP
;
571 coda_write(dev
, header_code
, CODA_CMD_ENC_HEADER_CODE
);
572 ret
= coda_command_sync(ctx
, CODA_COMMAND_ENCODE_HEADER
);
574 v4l2_err(&dev
->v4l2_dev
, "CODA_COMMAND_ENCODE_HEADER timeout\n");
578 if (dev
->devtype
->product
== CODA_960
) {
579 for (i
= 63; i
> 0; i
--)
580 if (((char *)vb2_plane_vaddr(vb
, 0))[i
] != 0)
584 *size
= coda_read(dev
, CODA_REG_BIT_WR_PTR(ctx
->reg_idx
)) -
585 coda_read(dev
, CODA_CMD_ENC_HEADER_BB_START
);
587 memcpy(header
, vb2_plane_vaddr(vb
, 0), *size
);
592 static phys_addr_t
coda_iram_alloc(struct coda_iram_info
*iram
, size_t size
)
596 size
= round_up(size
, 1024);
597 if (size
> iram
->remaining
)
599 iram
->remaining
-= size
;
601 ret
= iram
->next_paddr
;
602 iram
->next_paddr
+= size
;
607 static void coda_setup_iram(struct coda_ctx
*ctx
)
609 struct coda_iram_info
*iram_info
= &ctx
->iram_info
;
610 struct coda_dev
*dev
= ctx
->dev
;
618 memset(iram_info
, 0, sizeof(*iram_info
));
619 iram_info
->next_paddr
= dev
->iram
.paddr
;
620 iram_info
->remaining
= dev
->iram
.size
;
622 if (!dev
->iram
.vaddr
)
625 switch (dev
->devtype
->product
) {
627 dbk_bits
= CODA7_USE_HOST_DBK_ENABLE
;
628 bit_bits
= CODA7_USE_HOST_BIT_ENABLE
;
629 ip_bits
= CODA7_USE_HOST_IP_ENABLE
;
630 me_bits
= CODA7_USE_HOST_ME_ENABLE
;
633 dbk_bits
= CODA7_USE_HOST_DBK_ENABLE
| CODA7_USE_DBK_ENABLE
;
634 bit_bits
= CODA7_USE_HOST_BIT_ENABLE
| CODA7_USE_BIT_ENABLE
;
635 ip_bits
= CODA7_USE_HOST_IP_ENABLE
| CODA7_USE_IP_ENABLE
;
636 me_bits
= CODA7_USE_HOST_ME_ENABLE
| CODA7_USE_ME_ENABLE
;
639 dbk_bits
= CODA9_USE_HOST_DBK_ENABLE
| CODA9_USE_DBK_ENABLE
;
640 bit_bits
= CODA9_USE_HOST_BIT_ENABLE
| CODA7_USE_BIT_ENABLE
;
641 ip_bits
= CODA9_USE_HOST_IP_ENABLE
| CODA7_USE_IP_ENABLE
;
644 default: /* CODA_DX6 */
648 if (ctx
->inst_type
== CODA_INST_ENCODER
) {
649 struct coda_q_data
*q_data_src
;
651 q_data_src
= get_q_data(ctx
, V4L2_BUF_TYPE_VIDEO_OUTPUT
);
652 mb_width
= DIV_ROUND_UP(q_data_src
->rect
.width
, 16);
653 w128
= mb_width
* 128;
656 /* Prioritize in case IRAM is too small for everything */
657 if (dev
->devtype
->product
== CODA_HX4
||
658 dev
->devtype
->product
== CODA_7541
) {
659 iram_info
->search_ram_size
= round_up(mb_width
* 16 *
661 iram_info
->search_ram_paddr
= coda_iram_alloc(iram_info
,
662 iram_info
->search_ram_size
);
663 if (!iram_info
->search_ram_paddr
) {
664 pr_err("IRAM is smaller than the search ram size\n");
667 iram_info
->axi_sram_use
|= me_bits
;
670 /* Only H.264BP and H.263P3 are considered */
671 iram_info
->buf_dbk_y_use
= coda_iram_alloc(iram_info
, w64
);
672 iram_info
->buf_dbk_c_use
= coda_iram_alloc(iram_info
, w64
);
673 if (!iram_info
->buf_dbk_c_use
)
675 iram_info
->axi_sram_use
|= dbk_bits
;
677 iram_info
->buf_bit_use
= coda_iram_alloc(iram_info
, w128
);
678 if (!iram_info
->buf_bit_use
)
680 iram_info
->axi_sram_use
|= bit_bits
;
682 iram_info
->buf_ip_ac_dc_use
= coda_iram_alloc(iram_info
, w128
);
683 if (!iram_info
->buf_ip_ac_dc_use
)
685 iram_info
->axi_sram_use
|= ip_bits
;
687 /* OVL and BTP disabled for encoder */
688 } else if (ctx
->inst_type
== CODA_INST_DECODER
) {
689 struct coda_q_data
*q_data_dst
;
691 q_data_dst
= get_q_data(ctx
, V4L2_BUF_TYPE_VIDEO_CAPTURE
);
692 mb_width
= DIV_ROUND_UP(q_data_dst
->width
, 16);
693 w128
= mb_width
* 128;
695 iram_info
->buf_dbk_y_use
= coda_iram_alloc(iram_info
, w128
);
696 iram_info
->buf_dbk_c_use
= coda_iram_alloc(iram_info
, w128
);
697 if (!iram_info
->buf_dbk_c_use
)
699 iram_info
->axi_sram_use
|= dbk_bits
;
701 iram_info
->buf_bit_use
= coda_iram_alloc(iram_info
, w128
);
702 if (!iram_info
->buf_bit_use
)
704 iram_info
->axi_sram_use
|= bit_bits
;
706 iram_info
->buf_ip_ac_dc_use
= coda_iram_alloc(iram_info
, w128
);
707 if (!iram_info
->buf_ip_ac_dc_use
)
709 iram_info
->axi_sram_use
|= ip_bits
;
711 /* OVL and BTP unused as there is no VC1 support yet */
715 if (!(iram_info
->axi_sram_use
& CODA7_USE_HOST_IP_ENABLE
))
716 v4l2_dbg(1, coda_debug
, &ctx
->dev
->v4l2_dev
,
717 "IRAM smaller than needed\n");
719 if (dev
->devtype
->product
== CODA_HX4
||
720 dev
->devtype
->product
== CODA_7541
) {
721 /* TODO - Enabling these causes picture errors on CODA7541 */
722 if (ctx
->inst_type
== CODA_INST_DECODER
) {
724 iram_info
->axi_sram_use
&= ~(CODA7_USE_HOST_IP_ENABLE
|
725 CODA7_USE_IP_ENABLE
);
728 iram_info
->axi_sram_use
&= ~(CODA7_USE_HOST_IP_ENABLE
|
729 CODA7_USE_HOST_DBK_ENABLE
|
730 CODA7_USE_IP_ENABLE
|
731 CODA7_USE_DBK_ENABLE
);
736 static u32 coda_supported_firmwares
[] = {
737 CODA_FIRMWARE_VERNUM(CODA_DX6
, 2, 2, 5),
738 CODA_FIRMWARE_VERNUM(CODA_HX4
, 1, 4, 50),
739 CODA_FIRMWARE_VERNUM(CODA_7541
, 1, 4, 50),
740 CODA_FIRMWARE_VERNUM(CODA_960
, 2, 1, 5),
741 CODA_FIRMWARE_VERNUM(CODA_960
, 2, 1, 9),
742 CODA_FIRMWARE_VERNUM(CODA_960
, 2, 3, 10),
743 CODA_FIRMWARE_VERNUM(CODA_960
, 3, 1, 1),
746 static bool coda_firmware_supported(u32 vernum
)
750 for (i
= 0; i
< ARRAY_SIZE(coda_supported_firmwares
); i
++)
751 if (vernum
== coda_supported_firmwares
[i
])
756 int coda_check_firmware(struct coda_dev
*dev
)
758 u16 product
, major
, minor
, release
;
762 ret
= clk_prepare_enable(dev
->clk_per
);
766 ret
= clk_prepare_enable(dev
->clk_ahb
);
770 coda_write(dev
, 0, CODA_CMD_FIRMWARE_VERNUM
);
771 coda_write(dev
, CODA_REG_BIT_BUSY_FLAG
, CODA_REG_BIT_BUSY
);
772 coda_write(dev
, 0, CODA_REG_BIT_RUN_INDEX
);
773 coda_write(dev
, 0, CODA_REG_BIT_RUN_COD_STD
);
774 coda_write(dev
, CODA_COMMAND_FIRMWARE_GET
, CODA_REG_BIT_RUN_COMMAND
);
775 if (coda_wait_timeout(dev
)) {
776 v4l2_err(&dev
->v4l2_dev
, "firmware get command error\n");
781 if (dev
->devtype
->product
== CODA_960
) {
782 data
= coda_read(dev
, CODA9_CMD_FIRMWARE_CODE_REV
);
783 v4l2_info(&dev
->v4l2_dev
, "Firmware code revision: %d\n",
787 /* Check we are compatible with the loaded firmware */
788 data
= coda_read(dev
, CODA_CMD_FIRMWARE_VERNUM
);
789 product
= CODA_FIRMWARE_PRODUCT(data
);
790 major
= CODA_FIRMWARE_MAJOR(data
);
791 minor
= CODA_FIRMWARE_MINOR(data
);
792 release
= CODA_FIRMWARE_RELEASE(data
);
794 clk_disable_unprepare(dev
->clk_per
);
795 clk_disable_unprepare(dev
->clk_ahb
);
797 if (product
!= dev
->devtype
->product
) {
798 v4l2_err(&dev
->v4l2_dev
,
799 "Wrong firmware. Hw: %s, Fw: %s, Version: %u.%u.%u\n",
800 coda_product_name(dev
->devtype
->product
),
801 coda_product_name(product
), major
, minor
, release
);
805 v4l2_info(&dev
->v4l2_dev
, "Initialized %s.\n",
806 coda_product_name(product
));
808 if (coda_firmware_supported(data
)) {
809 v4l2_info(&dev
->v4l2_dev
, "Firmware version: %u.%u.%u\n",
810 major
, minor
, release
);
812 v4l2_warn(&dev
->v4l2_dev
,
813 "Unsupported firmware version: %u.%u.%u\n",
814 major
, minor
, release
);
820 clk_disable_unprepare(dev
->clk_ahb
);
822 clk_disable_unprepare(dev
->clk_per
);
827 static void coda9_set_frame_cache(struct coda_ctx
*ctx
, u32 fourcc
)
829 u32 cache_size
, cache_config
;
831 if (ctx
->tiled_map_type
== GDI_LINEAR_FRAME_MAP
) {
832 /* Luma 2x0 page, 2x6 cache, chroma 2x0 page, 2x4 cache size */
833 cache_size
= 0x20262024;
834 cache_config
= 2 << CODA9_CACHE_PAGEMERGE_OFFSET
;
836 /* Luma 0x2 page, 4x4 cache, chroma 0x2 page, 4x3 cache size */
837 cache_size
= 0x02440243;
838 cache_config
= 1 << CODA9_CACHE_PAGEMERGE_OFFSET
;
840 coda_write(ctx
->dev
, cache_size
, CODA9_CMD_SET_FRAME_CACHE_SIZE
);
841 if (fourcc
== V4L2_PIX_FMT_NV12
|| fourcc
== V4L2_PIX_FMT_YUYV
) {
842 cache_config
|= 32 << CODA9_CACHE_LUMA_BUFFER_SIZE_OFFSET
|
843 16 << CODA9_CACHE_CR_BUFFER_SIZE_OFFSET
|
844 0 << CODA9_CACHE_CB_BUFFER_SIZE_OFFSET
;
846 cache_config
|= 32 << CODA9_CACHE_LUMA_BUFFER_SIZE_OFFSET
|
847 8 << CODA9_CACHE_CR_BUFFER_SIZE_OFFSET
|
848 8 << CODA9_CACHE_CB_BUFFER_SIZE_OFFSET
;
850 coda_write(ctx
->dev
, cache_config
, CODA9_CMD_SET_FRAME_CACHE_CONFIG
);
854 * Encoder context operations
857 static int coda_encoder_reqbufs(struct coda_ctx
*ctx
,
858 struct v4l2_requestbuffers
*rb
)
860 struct coda_q_data
*q_data_src
;
863 if (rb
->type
!= V4L2_BUF_TYPE_VIDEO_OUTPUT
)
867 q_data_src
= get_q_data(ctx
, V4L2_BUF_TYPE_VIDEO_OUTPUT
);
868 ret
= coda_alloc_context_buffers(ctx
, q_data_src
);
872 coda_free_context_buffers(ctx
);
878 static int coda_start_encoding(struct coda_ctx
*ctx
)
880 struct coda_dev
*dev
= ctx
->dev
;
881 struct v4l2_device
*v4l2_dev
= &dev
->v4l2_dev
;
882 struct coda_q_data
*q_data_src
, *q_data_dst
;
883 u32 bitstream_buf
, bitstream_size
;
884 struct vb2_v4l2_buffer
*buf
;
885 int gamma
, ret
, value
;
890 q_data_src
= get_q_data(ctx
, V4L2_BUF_TYPE_VIDEO_OUTPUT
);
891 q_data_dst
= get_q_data(ctx
, V4L2_BUF_TYPE_VIDEO_CAPTURE
);
892 dst_fourcc
= q_data_dst
->fourcc
;
894 buf
= v4l2_m2m_next_dst_buf(ctx
->fh
.m2m_ctx
);
895 bitstream_buf
= vb2_dma_contig_plane_dma_addr(&buf
->vb2_buf
, 0);
896 bitstream_size
= q_data_dst
->sizeimage
;
898 if (!coda_is_initialized(dev
)) {
899 v4l2_err(v4l2_dev
, "coda is not initialized.\n");
903 if (dst_fourcc
== V4L2_PIX_FMT_JPEG
) {
904 if (!ctx
->params
.jpeg_qmat_tab
[0])
905 ctx
->params
.jpeg_qmat_tab
[0] = kmalloc(64, GFP_KERNEL
);
906 if (!ctx
->params
.jpeg_qmat_tab
[1])
907 ctx
->params
.jpeg_qmat_tab
[1] = kmalloc(64, GFP_KERNEL
);
908 coda_set_jpeg_compression_quality(ctx
, ctx
->params
.jpeg_quality
);
911 mutex_lock(&dev
->coda_mutex
);
913 coda_write(dev
, ctx
->parabuf
.paddr
, CODA_REG_BIT_PARA_BUF_ADDR
);
914 coda_write(dev
, bitstream_buf
, CODA_REG_BIT_RD_PTR(ctx
->reg_idx
));
915 coda_write(dev
, bitstream_buf
, CODA_REG_BIT_WR_PTR(ctx
->reg_idx
));
916 switch (dev
->devtype
->product
) {
918 coda_write(dev
, CODADX6_STREAM_BUF_DYNALLOC_EN
|
919 CODADX6_STREAM_BUF_PIC_RESET
, CODA_REG_BIT_STREAM_CTRL
);
922 coda_write(dev
, 0, CODA9_GDI_WPROT_RGN_EN
);
926 coda_write(dev
, CODA7_STREAM_BUF_DYNALLOC_EN
|
927 CODA7_STREAM_BUF_PIC_RESET
, CODA_REG_BIT_STREAM_CTRL
);
931 ctx
->frame_mem_ctrl
&= ~(CODA_FRAME_CHROMA_INTERLEAVE
| (0x3 << 9) |
932 CODA9_FRAME_TILED2LINEAR
);
933 if (q_data_src
->fourcc
== V4L2_PIX_FMT_NV12
)
934 ctx
->frame_mem_ctrl
|= CODA_FRAME_CHROMA_INTERLEAVE
;
935 if (ctx
->tiled_map_type
== GDI_TILED_FRAME_MB_RASTER_MAP
)
936 ctx
->frame_mem_ctrl
|= (0x3 << 9) | CODA9_FRAME_TILED2LINEAR
;
937 coda_write(dev
, ctx
->frame_mem_ctrl
, CODA_REG_BIT_FRAME_MEM_CTRL
);
939 if (dev
->devtype
->product
== CODA_DX6
) {
940 /* Configure the coda */
941 coda_write(dev
, dev
->iram
.paddr
,
942 CODADX6_REG_BIT_SEARCH_RAM_BASE_ADDR
);
945 /* Could set rotation here if needed */
947 switch (dev
->devtype
->product
) {
949 value
= (q_data_src
->rect
.width
& CODADX6_PICWIDTH_MASK
)
950 << CODADX6_PICWIDTH_OFFSET
;
951 value
|= (q_data_src
->rect
.height
& CODADX6_PICHEIGHT_MASK
)
952 << CODA_PICHEIGHT_OFFSET
;
956 if (dst_fourcc
== V4L2_PIX_FMT_H264
) {
957 value
= (round_up(q_data_src
->rect
.width
, 16) &
958 CODA7_PICWIDTH_MASK
) << CODA7_PICWIDTH_OFFSET
;
959 value
|= (round_up(q_data_src
->rect
.height
, 16) &
960 CODA7_PICHEIGHT_MASK
) << CODA_PICHEIGHT_OFFSET
;
965 value
= (q_data_src
->rect
.width
& CODA7_PICWIDTH_MASK
)
966 << CODA7_PICWIDTH_OFFSET
;
967 value
|= (q_data_src
->rect
.height
& CODA7_PICHEIGHT_MASK
)
968 << CODA_PICHEIGHT_OFFSET
;
970 coda_write(dev
, value
, CODA_CMD_ENC_SEQ_SRC_SIZE
);
971 if (dst_fourcc
== V4L2_PIX_FMT_JPEG
)
972 ctx
->params
.framerate
= 0;
973 coda_write(dev
, ctx
->params
.framerate
,
974 CODA_CMD_ENC_SEQ_SRC_F_RATE
);
976 ctx
->params
.codec_mode
= ctx
->codec
->mode
;
977 switch (dst_fourcc
) {
978 case V4L2_PIX_FMT_MPEG4
:
979 if (dev
->devtype
->product
== CODA_960
)
980 coda_write(dev
, CODA9_STD_MPEG4
,
981 CODA_CMD_ENC_SEQ_COD_STD
);
983 coda_write(dev
, CODA_STD_MPEG4
,
984 CODA_CMD_ENC_SEQ_COD_STD
);
985 coda_write(dev
, 0, CODA_CMD_ENC_SEQ_MP4_PARA
);
987 case V4L2_PIX_FMT_H264
:
988 if (dev
->devtype
->product
== CODA_960
)
989 coda_write(dev
, CODA9_STD_H264
,
990 CODA_CMD_ENC_SEQ_COD_STD
);
992 coda_write(dev
, CODA_STD_H264
,
993 CODA_CMD_ENC_SEQ_COD_STD
);
994 if (ctx
->params
.h264_deblk_enabled
) {
995 value
= ((ctx
->params
.h264_deblk_alpha
&
996 CODA_264PARAM_DEBLKFILTEROFFSETALPHA_MASK
) <<
997 CODA_264PARAM_DEBLKFILTEROFFSETALPHA_OFFSET
) |
998 ((ctx
->params
.h264_deblk_beta
&
999 CODA_264PARAM_DEBLKFILTEROFFSETBETA_MASK
) <<
1000 CODA_264PARAM_DEBLKFILTEROFFSETBETA_OFFSET
);
1002 value
= 1 << CODA_264PARAM_DISABLEDEBLK_OFFSET
;
1004 coda_write(dev
, value
, CODA_CMD_ENC_SEQ_264_PARA
);
1006 case V4L2_PIX_FMT_JPEG
:
1007 coda_write(dev
, 0, CODA_CMD_ENC_SEQ_JPG_PARA
);
1008 coda_write(dev
, ctx
->params
.jpeg_restart_interval
,
1009 CODA_CMD_ENC_SEQ_JPG_RST_INTERVAL
);
1010 coda_write(dev
, 0, CODA_CMD_ENC_SEQ_JPG_THUMB_EN
);
1011 coda_write(dev
, 0, CODA_CMD_ENC_SEQ_JPG_THUMB_SIZE
);
1012 coda_write(dev
, 0, CODA_CMD_ENC_SEQ_JPG_THUMB_OFFSET
);
1014 coda_jpeg_write_tables(ctx
);
1018 "dst format (0x%08x) invalid.\n", dst_fourcc
);
1024 * slice mode and GOP size registers are used for thumb size/offset
1027 if (dst_fourcc
!= V4L2_PIX_FMT_JPEG
) {
1028 switch (ctx
->params
.slice_mode
) {
1029 case V4L2_MPEG_VIDEO_MULTI_SLICE_MODE_SINGLE
:
1032 case V4L2_MPEG_VIDEO_MULTI_SICE_MODE_MAX_MB
:
1033 value
= (ctx
->params
.slice_max_mb
&
1034 CODA_SLICING_SIZE_MASK
)
1035 << CODA_SLICING_SIZE_OFFSET
;
1036 value
|= (1 & CODA_SLICING_UNIT_MASK
)
1037 << CODA_SLICING_UNIT_OFFSET
;
1038 value
|= 1 & CODA_SLICING_MODE_MASK
;
1040 case V4L2_MPEG_VIDEO_MULTI_SICE_MODE_MAX_BYTES
:
1041 value
= (ctx
->params
.slice_max_bits
&
1042 CODA_SLICING_SIZE_MASK
)
1043 << CODA_SLICING_SIZE_OFFSET
;
1044 value
|= (0 & CODA_SLICING_UNIT_MASK
)
1045 << CODA_SLICING_UNIT_OFFSET
;
1046 value
|= 1 & CODA_SLICING_MODE_MASK
;
1049 coda_write(dev
, value
, CODA_CMD_ENC_SEQ_SLICE_MODE
);
1050 value
= ctx
->params
.gop_size
;
1051 coda_write(dev
, value
, CODA_CMD_ENC_SEQ_GOP_SIZE
);
1054 if (ctx
->params
.bitrate
) {
1055 /* Rate control enabled */
1056 value
= (ctx
->params
.bitrate
& CODA_RATECONTROL_BITRATE_MASK
)
1057 << CODA_RATECONTROL_BITRATE_OFFSET
;
1058 value
|= 1 & CODA_RATECONTROL_ENABLE_MASK
;
1059 value
|= (ctx
->params
.vbv_delay
&
1060 CODA_RATECONTROL_INITIALDELAY_MASK
)
1061 << CODA_RATECONTROL_INITIALDELAY_OFFSET
;
1062 if (dev
->devtype
->product
== CODA_960
)
1063 value
|= BIT(31); /* disable autoskip */
1067 coda_write(dev
, value
, CODA_CMD_ENC_SEQ_RC_PARA
);
1069 coda_write(dev
, ctx
->params
.vbv_size
, CODA_CMD_ENC_SEQ_RC_BUF_SIZE
);
1070 coda_write(dev
, ctx
->params
.intra_refresh
,
1071 CODA_CMD_ENC_SEQ_INTRA_REFRESH
);
1073 coda_write(dev
, bitstream_buf
, CODA_CMD_ENC_SEQ_BB_START
);
1074 coda_write(dev
, bitstream_size
/ 1024, CODA_CMD_ENC_SEQ_BB_SIZE
);
1078 if (dev
->devtype
->product
== CODA_960
)
1079 gamma
= CODA9_DEFAULT_GAMMA
;
1081 gamma
= CODA_DEFAULT_GAMMA
;
1083 coda_write(dev
, (gamma
& CODA_GAMMA_MASK
) << CODA_GAMMA_OFFSET
,
1084 CODA_CMD_ENC_SEQ_RC_GAMMA
);
1087 if (ctx
->params
.h264_min_qp
|| ctx
->params
.h264_max_qp
) {
1089 ctx
->params
.h264_min_qp
<< CODA_QPMIN_OFFSET
|
1090 ctx
->params
.h264_max_qp
<< CODA_QPMAX_OFFSET
,
1091 CODA_CMD_ENC_SEQ_RC_QP_MIN_MAX
);
1093 if (dev
->devtype
->product
== CODA_960
) {
1094 if (ctx
->params
.h264_max_qp
)
1095 value
|= 1 << CODA9_OPTION_RCQPMAX_OFFSET
;
1096 if (CODA_DEFAULT_GAMMA
> 0)
1097 value
|= 1 << CODA9_OPTION_GAMMA_OFFSET
;
1099 if (CODA_DEFAULT_GAMMA
> 0) {
1100 if (dev
->devtype
->product
== CODA_DX6
)
1101 value
|= 1 << CODADX6_OPTION_GAMMA_OFFSET
;
1103 value
|= 1 << CODA7_OPTION_GAMMA_OFFSET
;
1105 if (ctx
->params
.h264_min_qp
)
1106 value
|= 1 << CODA7_OPTION_RCQPMIN_OFFSET
;
1107 if (ctx
->params
.h264_max_qp
)
1108 value
|= 1 << CODA7_OPTION_RCQPMAX_OFFSET
;
1110 coda_write(dev
, value
, CODA_CMD_ENC_SEQ_OPTION
);
1112 coda_write(dev
, 0, CODA_CMD_ENC_SEQ_RC_INTERVAL_MODE
);
1114 coda_setup_iram(ctx
);
1116 if (dst_fourcc
== V4L2_PIX_FMT_H264
) {
1117 switch (dev
->devtype
->product
) {
1119 value
= FMO_SLICE_SAVE_BUF_SIZE
<< 7;
1120 coda_write(dev
, value
, CODADX6_CMD_ENC_SEQ_FMO
);
1124 coda_write(dev
, ctx
->iram_info
.search_ram_paddr
,
1125 CODA7_CMD_ENC_SEQ_SEARCH_BASE
);
1126 coda_write(dev
, ctx
->iram_info
.search_ram_size
,
1127 CODA7_CMD_ENC_SEQ_SEARCH_SIZE
);
1130 coda_write(dev
, 0, CODA9_CMD_ENC_SEQ_ME_OPTION
);
1131 coda_write(dev
, 0, CODA9_CMD_ENC_SEQ_INTRA_WEIGHT
);
1135 ret
= coda_command_sync(ctx
, CODA_COMMAND_SEQ_INIT
);
1137 v4l2_err(v4l2_dev
, "CODA_COMMAND_SEQ_INIT timeout\n");
1141 if (coda_read(dev
, CODA_RET_ENC_SEQ_SUCCESS
) == 0) {
1142 v4l2_err(v4l2_dev
, "CODA_COMMAND_SEQ_INIT failed\n");
1146 ctx
->initialized
= 1;
1148 if (dst_fourcc
!= V4L2_PIX_FMT_JPEG
) {
1149 if (dev
->devtype
->product
== CODA_960
)
1150 ctx
->num_internal_frames
= 4;
1152 ctx
->num_internal_frames
= 2;
1153 ret
= coda_alloc_framebuffers(ctx
, q_data_src
, dst_fourcc
);
1155 v4l2_err(v4l2_dev
, "failed to allocate framebuffers\n");
1159 stride
= q_data_src
->bytesperline
;
1161 ctx
->num_internal_frames
= 0;
1165 coda_write(dev
, num_fb
, CODA_CMD_SET_FRAME_BUF_NUM
);
1166 coda_write(dev
, stride
, CODA_CMD_SET_FRAME_BUF_STRIDE
);
1168 if (dev
->devtype
->product
== CODA_HX4
||
1169 dev
->devtype
->product
== CODA_7541
) {
1170 coda_write(dev
, q_data_src
->bytesperline
,
1171 CODA7_CMD_SET_FRAME_SOURCE_BUF_STRIDE
);
1173 if (dev
->devtype
->product
!= CODA_DX6
) {
1174 coda_write(dev
, ctx
->iram_info
.buf_bit_use
,
1175 CODA7_CMD_SET_FRAME_AXI_BIT_ADDR
);
1176 coda_write(dev
, ctx
->iram_info
.buf_ip_ac_dc_use
,
1177 CODA7_CMD_SET_FRAME_AXI_IPACDC_ADDR
);
1178 coda_write(dev
, ctx
->iram_info
.buf_dbk_y_use
,
1179 CODA7_CMD_SET_FRAME_AXI_DBKY_ADDR
);
1180 coda_write(dev
, ctx
->iram_info
.buf_dbk_c_use
,
1181 CODA7_CMD_SET_FRAME_AXI_DBKC_ADDR
);
1182 coda_write(dev
, ctx
->iram_info
.buf_ovl_use
,
1183 CODA7_CMD_SET_FRAME_AXI_OVL_ADDR
);
1184 if (dev
->devtype
->product
== CODA_960
) {
1185 coda_write(dev
, ctx
->iram_info
.buf_btp_use
,
1186 CODA9_CMD_SET_FRAME_AXI_BTP_ADDR
);
1188 coda9_set_frame_cache(ctx
, q_data_src
->fourcc
);
1191 coda_write(dev
, ctx
->internal_frames
[2].paddr
,
1192 CODA9_CMD_SET_FRAME_SUBSAMP_A
);
1193 coda_write(dev
, ctx
->internal_frames
[3].paddr
,
1194 CODA9_CMD_SET_FRAME_SUBSAMP_B
);
1198 ret
= coda_command_sync(ctx
, CODA_COMMAND_SET_FRAME_BUF
);
1200 v4l2_err(v4l2_dev
, "CODA_COMMAND_SET_FRAME_BUF timeout\n");
1204 /* Save stream headers */
1205 buf
= v4l2_m2m_next_dst_buf(ctx
->fh
.m2m_ctx
);
1206 switch (dst_fourcc
) {
1207 case V4L2_PIX_FMT_H264
:
1209 * Get SPS in the first frame and copy it to an
1210 * intermediate buffer.
1212 ret
= coda_encode_header(ctx
, buf
, CODA_HEADER_H264_SPS
,
1213 &ctx
->vpu_header
[0][0],
1214 &ctx
->vpu_header_size
[0]);
1219 * If visible width or height are not aligned to macroblock
1220 * size, the crop_right and crop_bottom SPS fields must be set
1221 * to the difference between visible and coded size. This is
1222 * only supported by CODA960 firmware. All others do not allow
1223 * writing frame cropping parameters, so we have to manually
1224 * fix up the SPS RBSP (Sequence Parameter Set Raw Byte
1225 * Sequence Payload) ourselves.
1227 if (ctx
->dev
->devtype
->product
!= CODA_960
&&
1228 ((q_data_src
->rect
.width
% 16) ||
1229 (q_data_src
->rect
.height
% 16))) {
1230 ret
= coda_h264_sps_fixup(ctx
, q_data_src
->rect
.width
,
1231 q_data_src
->rect
.height
,
1232 &ctx
->vpu_header
[0][0],
1233 &ctx
->vpu_header_size
[0],
1234 sizeof(ctx
->vpu_header
[0]));
1240 * Get PPS in the first frame and copy it to an
1241 * intermediate buffer.
1243 ret
= coda_encode_header(ctx
, buf
, CODA_HEADER_H264_PPS
,
1244 &ctx
->vpu_header
[1][0],
1245 &ctx
->vpu_header_size
[1]);
1250 * Length of H.264 headers is variable and thus it might not be
1251 * aligned for the coda to append the encoded frame. In that is
1252 * the case a filler NAL must be added to header 2.
1254 ctx
->vpu_header_size
[2] = coda_h264_padding(
1255 (ctx
->vpu_header_size
[0] +
1256 ctx
->vpu_header_size
[1]),
1257 ctx
->vpu_header
[2]);
1259 case V4L2_PIX_FMT_MPEG4
:
1261 * Get VOS in the first frame and copy it to an
1262 * intermediate buffer
1264 ret
= coda_encode_header(ctx
, buf
, CODA_HEADER_MP4V_VOS
,
1265 &ctx
->vpu_header
[0][0],
1266 &ctx
->vpu_header_size
[0]);
1270 ret
= coda_encode_header(ctx
, buf
, CODA_HEADER_MP4V_VIS
,
1271 &ctx
->vpu_header
[1][0],
1272 &ctx
->vpu_header_size
[1]);
1276 ret
= coda_encode_header(ctx
, buf
, CODA_HEADER_MP4V_VOL
,
1277 &ctx
->vpu_header
[2][0],
1278 &ctx
->vpu_header_size
[2]);
1283 /* No more formats need to save headers at the moment */
1288 mutex_unlock(&dev
->coda_mutex
);
1292 static int coda_prepare_encode(struct coda_ctx
*ctx
)
1294 struct coda_q_data
*q_data_src
, *q_data_dst
;
1295 struct vb2_v4l2_buffer
*src_buf
, *dst_buf
;
1296 struct coda_dev
*dev
= ctx
->dev
;
1298 int quant_param
= 0;
1299 u32 pic_stream_buffer_addr
, pic_stream_buffer_size
;
1304 src_buf
= v4l2_m2m_next_src_buf(ctx
->fh
.m2m_ctx
);
1305 dst_buf
= v4l2_m2m_next_dst_buf(ctx
->fh
.m2m_ctx
);
1306 q_data_src
= get_q_data(ctx
, V4L2_BUF_TYPE_VIDEO_OUTPUT
);
1307 q_data_dst
= get_q_data(ctx
, V4L2_BUF_TYPE_VIDEO_CAPTURE
);
1308 dst_fourcc
= q_data_dst
->fourcc
;
1310 src_buf
->sequence
= ctx
->osequence
;
1311 dst_buf
->sequence
= ctx
->osequence
;
1314 force_ipicture
= ctx
->params
.force_ipicture
;
1316 ctx
->params
.force_ipicture
= false;
1317 else if (ctx
->params
.gop_size
!= 0 &&
1318 (src_buf
->sequence
% ctx
->params
.gop_size
) == 0)
1322 * Workaround coda firmware BUG that only marks the first
1323 * frame as IDR. This is a problem for some decoders that can't
1324 * recover when a frame is lost.
1326 if (!force_ipicture
) {
1327 src_buf
->flags
|= V4L2_BUF_FLAG_PFRAME
;
1328 src_buf
->flags
&= ~V4L2_BUF_FLAG_KEYFRAME
;
1330 src_buf
->flags
|= V4L2_BUF_FLAG_KEYFRAME
;
1331 src_buf
->flags
&= ~V4L2_BUF_FLAG_PFRAME
;
1334 if (dev
->devtype
->product
== CODA_960
)
1335 coda_set_gdi_regs(ctx
);
1338 * Copy headers in front of the first frame and forced I frames for
1339 * H.264 only. In MPEG4 they are already copied by the CODA.
1341 if (src_buf
->sequence
== 0 || force_ipicture
) {
1342 pic_stream_buffer_addr
=
1343 vb2_dma_contig_plane_dma_addr(&dst_buf
->vb2_buf
, 0) +
1344 ctx
->vpu_header_size
[0] +
1345 ctx
->vpu_header_size
[1] +
1346 ctx
->vpu_header_size
[2];
1347 pic_stream_buffer_size
= q_data_dst
->sizeimage
-
1348 ctx
->vpu_header_size
[0] -
1349 ctx
->vpu_header_size
[1] -
1350 ctx
->vpu_header_size
[2];
1351 memcpy(vb2_plane_vaddr(&dst_buf
->vb2_buf
, 0),
1352 &ctx
->vpu_header
[0][0], ctx
->vpu_header_size
[0]);
1353 memcpy(vb2_plane_vaddr(&dst_buf
->vb2_buf
, 0)
1354 + ctx
->vpu_header_size
[0], &ctx
->vpu_header
[1][0],
1355 ctx
->vpu_header_size
[1]);
1356 memcpy(vb2_plane_vaddr(&dst_buf
->vb2_buf
, 0)
1357 + ctx
->vpu_header_size
[0] + ctx
->vpu_header_size
[1],
1358 &ctx
->vpu_header
[2][0], ctx
->vpu_header_size
[2]);
1360 pic_stream_buffer_addr
=
1361 vb2_dma_contig_plane_dma_addr(&dst_buf
->vb2_buf
, 0);
1362 pic_stream_buffer_size
= q_data_dst
->sizeimage
;
1365 if (force_ipicture
) {
1366 switch (dst_fourcc
) {
1367 case V4L2_PIX_FMT_H264
:
1368 quant_param
= ctx
->params
.h264_intra_qp
;
1370 case V4L2_PIX_FMT_MPEG4
:
1371 quant_param
= ctx
->params
.mpeg4_intra_qp
;
1373 case V4L2_PIX_FMT_JPEG
:
1377 v4l2_warn(&ctx
->dev
->v4l2_dev
,
1378 "cannot set intra qp, fmt not supported\n");
1382 switch (dst_fourcc
) {
1383 case V4L2_PIX_FMT_H264
:
1384 quant_param
= ctx
->params
.h264_inter_qp
;
1386 case V4L2_PIX_FMT_MPEG4
:
1387 quant_param
= ctx
->params
.mpeg4_inter_qp
;
1390 v4l2_warn(&ctx
->dev
->v4l2_dev
,
1391 "cannot set inter qp, fmt not supported\n");
1397 if (ctx
->params
.rot_mode
)
1398 rot_mode
= CODA_ROT_MIR_ENABLE
| ctx
->params
.rot_mode
;
1399 coda_write(dev
, rot_mode
, CODA_CMD_ENC_PIC_ROT_MODE
);
1400 coda_write(dev
, quant_param
, CODA_CMD_ENC_PIC_QS
);
1402 if (dev
->devtype
->product
== CODA_960
) {
1403 coda_write(dev
, 4/*FIXME: 0*/, CODA9_CMD_ENC_PIC_SRC_INDEX
);
1404 coda_write(dev
, q_data_src
->bytesperline
,
1405 CODA9_CMD_ENC_PIC_SRC_STRIDE
);
1406 coda_write(dev
, 0, CODA9_CMD_ENC_PIC_SUB_FRAME_SYNC
);
1408 reg
= CODA9_CMD_ENC_PIC_SRC_ADDR_Y
;
1410 reg
= CODA_CMD_ENC_PIC_SRC_ADDR_Y
;
1412 coda_write_base(ctx
, q_data_src
, src_buf
, reg
);
1414 coda_write(dev
, force_ipicture
<< 1 & 0x2,
1415 CODA_CMD_ENC_PIC_OPTION
);
1417 coda_write(dev
, pic_stream_buffer_addr
, CODA_CMD_ENC_PIC_BB_START
);
1418 coda_write(dev
, pic_stream_buffer_size
/ 1024,
1419 CODA_CMD_ENC_PIC_BB_SIZE
);
1421 if (!ctx
->streamon_out
) {
1422 /* After streamoff on the output side, set stream end flag */
1423 ctx
->bit_stream_param
|= CODA_BIT_STREAM_END_FLAG
;
1424 coda_write(dev
, ctx
->bit_stream_param
,
1425 CODA_REG_BIT_BIT_STREAM_PARAM
);
1428 if (dev
->devtype
->product
!= CODA_DX6
)
1429 coda_write(dev
, ctx
->iram_info
.axi_sram_use
,
1430 CODA7_REG_BIT_AXI_SRAM_USE
);
1432 trace_coda_enc_pic_run(ctx
, src_buf
);
1434 coda_command_async(ctx
, CODA_COMMAND_PIC_RUN
);
1439 static void coda_finish_encode(struct coda_ctx
*ctx
)
1441 struct vb2_v4l2_buffer
*src_buf
, *dst_buf
;
1442 struct coda_dev
*dev
= ctx
->dev
;
1443 u32 wr_ptr
, start_ptr
;
1445 src_buf
= v4l2_m2m_src_buf_remove(ctx
->fh
.m2m_ctx
);
1446 dst_buf
= v4l2_m2m_next_dst_buf(ctx
->fh
.m2m_ctx
);
1448 trace_coda_enc_pic_done(ctx
, dst_buf
);
1450 /* Get results from the coda */
1451 start_ptr
= coda_read(dev
, CODA_CMD_ENC_PIC_BB_START
);
1452 wr_ptr
= coda_read(dev
, CODA_REG_BIT_WR_PTR(ctx
->reg_idx
));
1454 /* Calculate bytesused field */
1455 if (dst_buf
->sequence
== 0 ||
1456 src_buf
->flags
& V4L2_BUF_FLAG_KEYFRAME
) {
1457 vb2_set_plane_payload(&dst_buf
->vb2_buf
, 0, wr_ptr
- start_ptr
+
1458 ctx
->vpu_header_size
[0] +
1459 ctx
->vpu_header_size
[1] +
1460 ctx
->vpu_header_size
[2]);
1462 vb2_set_plane_payload(&dst_buf
->vb2_buf
, 0, wr_ptr
- start_ptr
);
1465 v4l2_dbg(1, coda_debug
, &ctx
->dev
->v4l2_dev
, "frame size = %u\n",
1466 wr_ptr
- start_ptr
);
1468 coda_read(dev
, CODA_RET_ENC_PIC_SLICE_NUM
);
1469 coda_read(dev
, CODA_RET_ENC_PIC_FLAG
);
1471 if (coda_read(dev
, CODA_RET_ENC_PIC_TYPE
) == 0) {
1472 dst_buf
->flags
|= V4L2_BUF_FLAG_KEYFRAME
;
1473 dst_buf
->flags
&= ~V4L2_BUF_FLAG_PFRAME
;
1475 dst_buf
->flags
|= V4L2_BUF_FLAG_PFRAME
;
1476 dst_buf
->flags
&= ~V4L2_BUF_FLAG_KEYFRAME
;
1479 dst_buf
->vb2_buf
.timestamp
= src_buf
->vb2_buf
.timestamp
;
1480 dst_buf
->field
= src_buf
->field
;
1481 dst_buf
->flags
&= ~V4L2_BUF_FLAG_TSTAMP_SRC_MASK
;
1483 src_buf
->flags
& V4L2_BUF_FLAG_TSTAMP_SRC_MASK
;
1484 dst_buf
->timecode
= src_buf
->timecode
;
1486 v4l2_m2m_buf_done(src_buf
, VB2_BUF_STATE_DONE
);
1488 dst_buf
= v4l2_m2m_dst_buf_remove(ctx
->fh
.m2m_ctx
);
1489 coda_m2m_buf_done(ctx
, dst_buf
, VB2_BUF_STATE_DONE
);
1492 if (ctx
->gopcounter
< 0)
1493 ctx
->gopcounter
= ctx
->params
.gop_size
- 1;
1495 v4l2_dbg(1, coda_debug
, &dev
->v4l2_dev
,
1496 "job finished: encoding frame (%d) (%s)\n",
1498 (dst_buf
->flags
& V4L2_BUF_FLAG_KEYFRAME
) ?
1499 "KEYFRAME" : "PFRAME");
1502 static void coda_seq_end_work(struct work_struct
*work
)
1504 struct coda_ctx
*ctx
= container_of(work
, struct coda_ctx
, seq_end_work
);
1505 struct coda_dev
*dev
= ctx
->dev
;
1507 mutex_lock(&ctx
->buffer_mutex
);
1508 mutex_lock(&dev
->coda_mutex
);
1510 if (ctx
->initialized
== 0)
1513 v4l2_dbg(1, coda_debug
, &dev
->v4l2_dev
,
1514 "%d: %s: sent command 'SEQ_END' to coda\n", ctx
->idx
,
1516 if (coda_command_sync(ctx
, CODA_COMMAND_SEQ_END
)) {
1517 v4l2_err(&dev
->v4l2_dev
,
1518 "CODA_COMMAND_SEQ_END failed\n");
1522 * FIXME: Sometimes h.264 encoding fails with 8-byte sequences missing
1523 * from the output stream after the h.264 decoder has run. Resetting the
1524 * hardware after the decoder has finished seems to help.
1526 if (dev
->devtype
->product
== CODA_960
)
1529 kfifo_init(&ctx
->bitstream_fifo
,
1530 ctx
->bitstream
.vaddr
, ctx
->bitstream
.size
);
1532 coda_free_framebuffers(ctx
);
1534 ctx
->initialized
= 0;
1537 mutex_unlock(&dev
->coda_mutex
);
1538 mutex_unlock(&ctx
->buffer_mutex
);
1541 static void coda_bit_release(struct coda_ctx
*ctx
)
1543 mutex_lock(&ctx
->buffer_mutex
);
1544 coda_free_framebuffers(ctx
);
1545 coda_free_context_buffers(ctx
);
1546 coda_free_bitstream_buffer(ctx
);
1547 mutex_unlock(&ctx
->buffer_mutex
);
1550 const struct coda_context_ops coda_bit_encode_ops
= {
1551 .queue_init
= coda_encoder_queue_init
,
1552 .reqbufs
= coda_encoder_reqbufs
,
1553 .start_streaming
= coda_start_encoding
,
1554 .prepare_run
= coda_prepare_encode
,
1555 .finish_run
= coda_finish_encode
,
1556 .seq_end_work
= coda_seq_end_work
,
1557 .release
= coda_bit_release
,
1561 * Decoder context operations
1564 static int coda_alloc_bitstream_buffer(struct coda_ctx
*ctx
,
1565 struct coda_q_data
*q_data
)
1567 if (ctx
->bitstream
.vaddr
)
1570 ctx
->bitstream
.size
= roundup_pow_of_two(q_data
->sizeimage
* 2);
1571 ctx
->bitstream
.vaddr
= dma_alloc_wc(&ctx
->dev
->plat_dev
->dev
,
1572 ctx
->bitstream
.size
,
1573 &ctx
->bitstream
.paddr
, GFP_KERNEL
);
1574 if (!ctx
->bitstream
.vaddr
) {
1575 v4l2_err(&ctx
->dev
->v4l2_dev
,
1576 "failed to allocate bitstream ringbuffer");
1579 kfifo_init(&ctx
->bitstream_fifo
,
1580 ctx
->bitstream
.vaddr
, ctx
->bitstream
.size
);
1585 static void coda_free_bitstream_buffer(struct coda_ctx
*ctx
)
1587 if (ctx
->bitstream
.vaddr
== NULL
)
1590 dma_free_wc(&ctx
->dev
->plat_dev
->dev
, ctx
->bitstream
.size
,
1591 ctx
->bitstream
.vaddr
, ctx
->bitstream
.paddr
);
1592 ctx
->bitstream
.vaddr
= NULL
;
1593 kfifo_init(&ctx
->bitstream_fifo
, NULL
, 0);
1596 static int coda_decoder_reqbufs(struct coda_ctx
*ctx
,
1597 struct v4l2_requestbuffers
*rb
)
1599 struct coda_q_data
*q_data_src
;
1602 if (rb
->type
!= V4L2_BUF_TYPE_VIDEO_OUTPUT
)
1606 q_data_src
= get_q_data(ctx
, V4L2_BUF_TYPE_VIDEO_OUTPUT
);
1607 ret
= coda_alloc_context_buffers(ctx
, q_data_src
);
1610 ret
= coda_alloc_bitstream_buffer(ctx
, q_data_src
);
1612 coda_free_context_buffers(ctx
);
1616 coda_free_bitstream_buffer(ctx
);
1617 coda_free_context_buffers(ctx
);
1623 static bool coda_reorder_enable(struct coda_ctx
*ctx
)
1625 struct coda_dev
*dev
= ctx
->dev
;
1628 if (dev
->devtype
->product
!= CODA_HX4
&&
1629 dev
->devtype
->product
!= CODA_7541
&&
1630 dev
->devtype
->product
!= CODA_960
)
1633 if (ctx
->codec
->src_fourcc
== V4L2_PIX_FMT_JPEG
)
1636 if (ctx
->codec
->src_fourcc
!= V4L2_PIX_FMT_H264
)
1639 profile
= coda_h264_profile(ctx
->params
.h264_profile_idc
);
1641 v4l2_warn(&dev
->v4l2_dev
, "Unknown H264 Profile: %u\n",
1642 ctx
->params
.h264_profile_idc
);
1644 /* Baseline profile does not support reordering */
1645 return profile
> V4L2_MPEG_VIDEO_H264_PROFILE_BASELINE
;
1648 static int __coda_start_decoding(struct coda_ctx
*ctx
)
1650 struct coda_q_data
*q_data_src
, *q_data_dst
;
1651 u32 bitstream_buf
, bitstream_size
;
1652 struct coda_dev
*dev
= ctx
->dev
;
1654 u32 src_fourcc
, dst_fourcc
;
1658 v4l2_dbg(1, coda_debug
, &dev
->v4l2_dev
,
1659 "Video Data Order Adapter: %s\n",
1660 ctx
->use_vdoa
? "Enabled" : "Disabled");
1662 /* Start decoding */
1663 q_data_src
= get_q_data(ctx
, V4L2_BUF_TYPE_VIDEO_OUTPUT
);
1664 q_data_dst
= get_q_data(ctx
, V4L2_BUF_TYPE_VIDEO_CAPTURE
);
1665 bitstream_buf
= ctx
->bitstream
.paddr
;
1666 bitstream_size
= ctx
->bitstream
.size
;
1667 src_fourcc
= q_data_src
->fourcc
;
1668 dst_fourcc
= q_data_dst
->fourcc
;
1670 coda_write(dev
, ctx
->parabuf
.paddr
, CODA_REG_BIT_PARA_BUF_ADDR
);
1672 /* Update coda bitstream read and write pointers from kfifo */
1673 coda_kfifo_sync_to_device_full(ctx
);
1675 ctx
->frame_mem_ctrl
&= ~(CODA_FRAME_CHROMA_INTERLEAVE
| (0x3 << 9) |
1676 CODA9_FRAME_TILED2LINEAR
);
1677 if (dst_fourcc
== V4L2_PIX_FMT_NV12
|| dst_fourcc
== V4L2_PIX_FMT_YUYV
)
1678 ctx
->frame_mem_ctrl
|= CODA_FRAME_CHROMA_INTERLEAVE
;
1679 if (ctx
->tiled_map_type
== GDI_TILED_FRAME_MB_RASTER_MAP
)
1680 ctx
->frame_mem_ctrl
|= (0x3 << 9) |
1681 ((ctx
->use_vdoa
) ? 0 : CODA9_FRAME_TILED2LINEAR
);
1682 coda_write(dev
, ctx
->frame_mem_ctrl
, CODA_REG_BIT_FRAME_MEM_CTRL
);
1684 ctx
->display_idx
= -1;
1685 ctx
->frm_dis_flg
= 0;
1686 coda_write(dev
, 0, CODA_REG_BIT_FRM_DIS_FLG(ctx
->reg_idx
));
1688 coda_write(dev
, bitstream_buf
, CODA_CMD_DEC_SEQ_BB_START
);
1689 coda_write(dev
, bitstream_size
/ 1024, CODA_CMD_DEC_SEQ_BB_SIZE
);
1691 if (coda_reorder_enable(ctx
))
1692 val
|= CODA_REORDER_ENABLE
;
1693 if (ctx
->codec
->src_fourcc
== V4L2_PIX_FMT_JPEG
)
1694 val
|= CODA_NO_INT_ENABLE
;
1695 coda_write(dev
, val
, CODA_CMD_DEC_SEQ_OPTION
);
1697 ctx
->params
.codec_mode
= ctx
->codec
->mode
;
1698 if (dev
->devtype
->product
== CODA_960
&&
1699 src_fourcc
== V4L2_PIX_FMT_MPEG4
)
1700 ctx
->params
.codec_mode_aux
= CODA_MP4_AUX_MPEG4
;
1702 ctx
->params
.codec_mode_aux
= 0;
1703 if (src_fourcc
== V4L2_PIX_FMT_MPEG4
) {
1704 coda_write(dev
, CODA_MP4_CLASS_MPEG4
,
1705 CODA_CMD_DEC_SEQ_MP4_ASP_CLASS
);
1707 if (src_fourcc
== V4L2_PIX_FMT_H264
) {
1708 if (dev
->devtype
->product
== CODA_HX4
||
1709 dev
->devtype
->product
== CODA_7541
) {
1710 coda_write(dev
, ctx
->psbuf
.paddr
,
1711 CODA_CMD_DEC_SEQ_PS_BB_START
);
1712 coda_write(dev
, (CODA7_PS_BUF_SIZE
/ 1024),
1713 CODA_CMD_DEC_SEQ_PS_BB_SIZE
);
1715 if (dev
->devtype
->product
== CODA_960
) {
1716 coda_write(dev
, 0, CODA_CMD_DEC_SEQ_X264_MV_EN
);
1717 coda_write(dev
, 512, CODA_CMD_DEC_SEQ_SPP_CHUNK_SIZE
);
1720 if (src_fourcc
== V4L2_PIX_FMT_JPEG
)
1721 coda_write(dev
, 0, CODA_CMD_DEC_SEQ_JPG_THUMB_EN
);
1722 if (dev
->devtype
->product
!= CODA_960
)
1723 coda_write(dev
, 0, CODA_CMD_DEC_SEQ_SRC_SIZE
);
1725 ctx
->bit_stream_param
= CODA_BIT_DEC_SEQ_INIT_ESCAPE
;
1726 ret
= coda_command_sync(ctx
, CODA_COMMAND_SEQ_INIT
);
1727 ctx
->bit_stream_param
= 0;
1729 v4l2_err(&dev
->v4l2_dev
, "CODA_COMMAND_SEQ_INIT timeout\n");
1732 ctx
->initialized
= 1;
1734 /* Update kfifo out pointer from coda bitstream read pointer */
1735 coda_kfifo_sync_from_device(ctx
);
1737 if (coda_read(dev
, CODA_RET_DEC_SEQ_SUCCESS
) == 0) {
1738 v4l2_err(&dev
->v4l2_dev
,
1739 "CODA_COMMAND_SEQ_INIT failed, error code = %d\n",
1740 coda_read(dev
, CODA_RET_DEC_SEQ_ERR_REASON
));
1744 val
= coda_read(dev
, CODA_RET_DEC_SEQ_SRC_SIZE
);
1745 if (dev
->devtype
->product
== CODA_DX6
) {
1746 width
= (val
>> CODADX6_PICWIDTH_OFFSET
) & CODADX6_PICWIDTH_MASK
;
1747 height
= val
& CODADX6_PICHEIGHT_MASK
;
1749 width
= (val
>> CODA7_PICWIDTH_OFFSET
) & CODA7_PICWIDTH_MASK
;
1750 height
= val
& CODA7_PICHEIGHT_MASK
;
1753 if (width
> q_data_dst
->bytesperline
|| height
> q_data_dst
->height
) {
1754 v4l2_err(&dev
->v4l2_dev
, "stream is %dx%d, not %dx%d\n",
1755 width
, height
, q_data_dst
->bytesperline
,
1756 q_data_dst
->height
);
1760 width
= round_up(width
, 16);
1761 height
= round_up(height
, 16);
1763 v4l2_dbg(1, coda_debug
, &dev
->v4l2_dev
, "%s instance %d now: %dx%d\n",
1764 __func__
, ctx
->idx
, width
, height
);
1766 ctx
->num_internal_frames
= coda_read(dev
, CODA_RET_DEC_SEQ_FRAME_NEED
);
1768 * If the VDOA is used, the decoder needs one additional frame,
1769 * because the frames are freed when the next frame is decoded.
1770 * Otherwise there are visible errors in the decoded frames (green
1771 * regions in displayed frames) and a broken order of frames (earlier
1772 * frames are sporadically displayed after later frames).
1775 ctx
->num_internal_frames
+= 1;
1776 if (ctx
->num_internal_frames
> CODA_MAX_FRAMEBUFFERS
) {
1777 v4l2_err(&dev
->v4l2_dev
,
1778 "not enough framebuffers to decode (%d < %d)\n",
1779 CODA_MAX_FRAMEBUFFERS
, ctx
->num_internal_frames
);
1783 if (src_fourcc
== V4L2_PIX_FMT_H264
) {
1787 left_right
= coda_read(dev
, CODA_RET_DEC_SEQ_CROP_LEFT_RIGHT
);
1788 top_bottom
= coda_read(dev
, CODA_RET_DEC_SEQ_CROP_TOP_BOTTOM
);
1790 q_data_dst
->rect
.left
= (left_right
>> 10) & 0x3ff;
1791 q_data_dst
->rect
.top
= (top_bottom
>> 10) & 0x3ff;
1792 q_data_dst
->rect
.width
= width
- q_data_dst
->rect
.left
-
1793 (left_right
& 0x3ff);
1794 q_data_dst
->rect
.height
= height
- q_data_dst
->rect
.top
-
1795 (top_bottom
& 0x3ff);
1798 ret
= coda_alloc_framebuffers(ctx
, q_data_dst
, src_fourcc
);
1800 v4l2_err(&dev
->v4l2_dev
, "failed to allocate framebuffers\n");
1804 /* Tell the decoder how many frame buffers we allocated. */
1805 coda_write(dev
, ctx
->num_internal_frames
, CODA_CMD_SET_FRAME_BUF_NUM
);
1806 coda_write(dev
, width
, CODA_CMD_SET_FRAME_BUF_STRIDE
);
1808 if (dev
->devtype
->product
!= CODA_DX6
) {
1809 /* Set secondary AXI IRAM */
1810 coda_setup_iram(ctx
);
1812 coda_write(dev
, ctx
->iram_info
.buf_bit_use
,
1813 CODA7_CMD_SET_FRAME_AXI_BIT_ADDR
);
1814 coda_write(dev
, ctx
->iram_info
.buf_ip_ac_dc_use
,
1815 CODA7_CMD_SET_FRAME_AXI_IPACDC_ADDR
);
1816 coda_write(dev
, ctx
->iram_info
.buf_dbk_y_use
,
1817 CODA7_CMD_SET_FRAME_AXI_DBKY_ADDR
);
1818 coda_write(dev
, ctx
->iram_info
.buf_dbk_c_use
,
1819 CODA7_CMD_SET_FRAME_AXI_DBKC_ADDR
);
1820 coda_write(dev
, ctx
->iram_info
.buf_ovl_use
,
1821 CODA7_CMD_SET_FRAME_AXI_OVL_ADDR
);
1822 if (dev
->devtype
->product
== CODA_960
) {
1823 coda_write(dev
, ctx
->iram_info
.buf_btp_use
,
1824 CODA9_CMD_SET_FRAME_AXI_BTP_ADDR
);
1826 coda_write(dev
, -1, CODA9_CMD_SET_FRAME_DELAY
);
1827 coda9_set_frame_cache(ctx
, dst_fourcc
);
1831 if (src_fourcc
== V4L2_PIX_FMT_H264
) {
1832 coda_write(dev
, ctx
->slicebuf
.paddr
,
1833 CODA_CMD_SET_FRAME_SLICE_BB_START
);
1834 coda_write(dev
, ctx
->slicebuf
.size
/ 1024,
1835 CODA_CMD_SET_FRAME_SLICE_BB_SIZE
);
1838 if (dev
->devtype
->product
== CODA_HX4
||
1839 dev
->devtype
->product
== CODA_7541
) {
1840 int max_mb_x
= 1920 / 16;
1841 int max_mb_y
= 1088 / 16;
1842 int max_mb_num
= max_mb_x
* max_mb_y
;
1844 coda_write(dev
, max_mb_num
<< 16 | max_mb_x
<< 8 | max_mb_y
,
1845 CODA7_CMD_SET_FRAME_MAX_DEC_SIZE
);
1846 } else if (dev
->devtype
->product
== CODA_960
) {
1847 int max_mb_x
= 1920 / 16;
1848 int max_mb_y
= 1088 / 16;
1849 int max_mb_num
= max_mb_x
* max_mb_y
;
1851 coda_write(dev
, max_mb_num
<< 16 | max_mb_x
<< 8 | max_mb_y
,
1852 CODA9_CMD_SET_FRAME_MAX_DEC_SIZE
);
1855 if (coda_command_sync(ctx
, CODA_COMMAND_SET_FRAME_BUF
)) {
1856 v4l2_err(&ctx
->dev
->v4l2_dev
,
1857 "CODA_COMMAND_SET_FRAME_BUF timeout\n");
1864 static int coda_start_decoding(struct coda_ctx
*ctx
)
1866 struct coda_dev
*dev
= ctx
->dev
;
1869 mutex_lock(&dev
->coda_mutex
);
1870 ret
= __coda_start_decoding(ctx
);
1871 mutex_unlock(&dev
->coda_mutex
);
1876 static int coda_prepare_decode(struct coda_ctx
*ctx
)
1878 struct vb2_v4l2_buffer
*dst_buf
;
1879 struct coda_dev
*dev
= ctx
->dev
;
1880 struct coda_q_data
*q_data_dst
;
1881 struct coda_buffer_meta
*meta
;
1882 unsigned long flags
;
1884 u32 reg_addr
, reg_stride
;
1886 dst_buf
= v4l2_m2m_next_dst_buf(ctx
->fh
.m2m_ctx
);
1887 q_data_dst
= get_q_data(ctx
, V4L2_BUF_TYPE_VIDEO_CAPTURE
);
1889 /* Try to copy source buffer contents into the bitstream ringbuffer */
1890 mutex_lock(&ctx
->bitstream_mutex
);
1891 coda_fill_bitstream(ctx
, NULL
);
1892 mutex_unlock(&ctx
->bitstream_mutex
);
1894 if (coda_get_bitstream_payload(ctx
) < 512 &&
1895 (!(ctx
->bit_stream_param
& CODA_BIT_STREAM_END_FLAG
))) {
1896 v4l2_dbg(1, coda_debug
, &dev
->v4l2_dev
,
1897 "bitstream payload: %d, skipping\n",
1898 coda_get_bitstream_payload(ctx
));
1899 v4l2_m2m_job_finish(ctx
->dev
->m2m_dev
, ctx
->fh
.m2m_ctx
);
1903 /* Run coda_start_decoding (again) if not yet initialized */
1904 if (!ctx
->initialized
) {
1905 int ret
= __coda_start_decoding(ctx
);
1908 v4l2_err(&dev
->v4l2_dev
, "failed to start decoding\n");
1909 v4l2_m2m_job_finish(ctx
->dev
->m2m_dev
, ctx
->fh
.m2m_ctx
);
1912 ctx
->initialized
= 1;
1916 if (dev
->devtype
->product
== CODA_960
)
1917 coda_set_gdi_regs(ctx
);
1919 if (ctx
->use_vdoa
&&
1920 ctx
->display_idx
>= 0 &&
1921 ctx
->display_idx
< ctx
->num_internal_frames
) {
1922 vdoa_device_run(ctx
->vdoa
,
1923 vb2_dma_contig_plane_dma_addr(&dst_buf
->vb2_buf
, 0),
1924 ctx
->internal_frames
[ctx
->display_idx
].paddr
);
1926 if (dev
->devtype
->product
== CODA_960
) {
1928 * The CODA960 seems to have an internal list of
1929 * buffers with 64 entries that includes the
1930 * registered frame buffers as well as the rotator
1933 * ROT_INDEX needs to be < 0x40, but >
1934 * ctx->num_internal_frames.
1937 CODA_MAX_FRAMEBUFFERS
+ dst_buf
->vb2_buf
.index
,
1938 CODA9_CMD_DEC_PIC_ROT_INDEX
);
1940 reg_addr
= CODA9_CMD_DEC_PIC_ROT_ADDR_Y
;
1941 reg_stride
= CODA9_CMD_DEC_PIC_ROT_STRIDE
;
1943 reg_addr
= CODA_CMD_DEC_PIC_ROT_ADDR_Y
;
1944 reg_stride
= CODA_CMD_DEC_PIC_ROT_STRIDE
;
1946 coda_write_base(ctx
, q_data_dst
, dst_buf
, reg_addr
);
1947 coda_write(dev
, q_data_dst
->bytesperline
, reg_stride
);
1949 rot_mode
= CODA_ROT_MIR_ENABLE
| ctx
->params
.rot_mode
;
1952 coda_write(dev
, rot_mode
, CODA_CMD_DEC_PIC_ROT_MODE
);
1954 switch (dev
->devtype
->product
) {
1959 coda_write(dev
, CODA_PRE_SCAN_EN
, CODA_CMD_DEC_PIC_OPTION
);
1962 /* 'hardcode to use interrupt disable mode'? */
1963 coda_write(dev
, (1 << 10), CODA_CMD_DEC_PIC_OPTION
);
1967 coda_write(dev
, 0, CODA_CMD_DEC_PIC_SKIP_NUM
);
1969 coda_write(dev
, 0, CODA_CMD_DEC_PIC_BB_START
);
1970 coda_write(dev
, 0, CODA_CMD_DEC_PIC_START_BYTE
);
1972 if (dev
->devtype
->product
!= CODA_DX6
)
1973 coda_write(dev
, ctx
->iram_info
.axi_sram_use
,
1974 CODA7_REG_BIT_AXI_SRAM_USE
);
1976 spin_lock_irqsave(&ctx
->buffer_meta_lock
, flags
);
1977 meta
= list_first_entry_or_null(&ctx
->buffer_meta_list
,
1978 struct coda_buffer_meta
, list
);
1980 if (meta
&& ctx
->codec
->src_fourcc
== V4L2_PIX_FMT_JPEG
) {
1982 /* If this is the last buffer in the bitstream, add padding */
1983 if (meta
->end
== (ctx
->bitstream_fifo
.kfifo
.in
&
1984 ctx
->bitstream_fifo
.kfifo
.mask
)) {
1985 static unsigned char buf
[512];
1988 /* Pad to multiple of 256 and then add 256 more */
1989 pad
= ((0 - meta
->end
) & 0xff) + 256;
1991 memset(buf
, 0xff, sizeof(buf
));
1993 kfifo_in(&ctx
->bitstream_fifo
, buf
, pad
);
1996 spin_unlock_irqrestore(&ctx
->buffer_meta_lock
, flags
);
1998 coda_kfifo_sync_to_device_full(ctx
);
2000 /* Clear decode success flag */
2001 coda_write(dev
, 0, CODA_RET_DEC_PIC_SUCCESS
);
2003 trace_coda_dec_pic_run(ctx
, meta
);
2005 coda_command_async(ctx
, CODA_COMMAND_PIC_RUN
);
2010 static void coda_finish_decode(struct coda_ctx
*ctx
)
2012 struct coda_dev
*dev
= ctx
->dev
;
2013 struct coda_q_data
*q_data_src
;
2014 struct coda_q_data
*q_data_dst
;
2015 struct vb2_v4l2_buffer
*dst_buf
;
2016 struct coda_buffer_meta
*meta
;
2017 unsigned long payload
;
2018 unsigned long flags
;
2028 /* Update kfifo out pointer from coda bitstream read pointer */
2029 coda_kfifo_sync_from_device(ctx
);
2032 * in stream-end mode, the read pointer can overshoot the write pointer
2033 * by up to 512 bytes
2035 if (ctx
->bit_stream_param
& CODA_BIT_STREAM_END_FLAG
) {
2036 if (coda_get_bitstream_payload(ctx
) >= ctx
->bitstream
.size
- 512)
2037 kfifo_init(&ctx
->bitstream_fifo
,
2038 ctx
->bitstream
.vaddr
, ctx
->bitstream
.size
);
2041 q_data_src
= get_q_data(ctx
, V4L2_BUF_TYPE_VIDEO_OUTPUT
);
2042 src_fourcc
= q_data_src
->fourcc
;
2044 val
= coda_read(dev
, CODA_RET_DEC_PIC_SUCCESS
);
2046 pr_err("DEC_PIC_SUCCESS = %d\n", val
);
2048 success
= val
& 0x1;
2050 v4l2_err(&dev
->v4l2_dev
, "decode failed\n");
2052 if (src_fourcc
== V4L2_PIX_FMT_H264
) {
2054 v4l2_err(&dev
->v4l2_dev
,
2055 "insufficient PS buffer space (%d bytes)\n",
2058 v4l2_err(&dev
->v4l2_dev
,
2059 "insufficient slice buffer space (%d bytes)\n",
2060 ctx
->slicebuf
.size
);
2063 val
= coda_read(dev
, CODA_RET_DEC_PIC_SIZE
);
2064 width
= (val
>> 16) & 0xffff;
2065 height
= val
& 0xffff;
2067 q_data_dst
= get_q_data(ctx
, V4L2_BUF_TYPE_VIDEO_CAPTURE
);
2069 /* frame crop information */
2070 if (src_fourcc
== V4L2_PIX_FMT_H264
) {
2074 left_right
= coda_read(dev
, CODA_RET_DEC_PIC_CROP_LEFT_RIGHT
);
2075 top_bottom
= coda_read(dev
, CODA_RET_DEC_PIC_CROP_TOP_BOTTOM
);
2077 if (left_right
== 0xffffffff && top_bottom
== 0xffffffff) {
2078 /* Keep current crop information */
2080 struct v4l2_rect
*rect
= &q_data_dst
->rect
;
2082 rect
->left
= left_right
>> 16 & 0xffff;
2083 rect
->top
= top_bottom
>> 16 & 0xffff;
2084 rect
->width
= width
- rect
->left
-
2085 (left_right
& 0xffff);
2086 rect
->height
= height
- rect
->top
-
2087 (top_bottom
& 0xffff);
2093 err_mb
= coda_read(dev
, CODA_RET_DEC_PIC_ERR_MB
);
2095 v4l2_err(&dev
->v4l2_dev
,
2096 "errors in %d macroblocks\n", err_mb
);
2098 if (dev
->devtype
->product
== CODA_HX4
||
2099 dev
->devtype
->product
== CODA_7541
) {
2100 val
= coda_read(dev
, CODA_RET_DEC_PIC_OPTION
);
2102 /* not enough bitstream data */
2103 v4l2_dbg(1, coda_debug
, &dev
->v4l2_dev
,
2104 "prescan failed: %d\n", val
);
2110 /* Wait until the VDOA finished writing the previous display frame */
2111 if (ctx
->use_vdoa
&&
2112 ctx
->display_idx
>= 0 &&
2113 ctx
->display_idx
< ctx
->num_internal_frames
) {
2114 err_vdoa
= vdoa_wait_for_completion(ctx
->vdoa
);
2117 ctx
->frm_dis_flg
= coda_read(dev
,
2118 CODA_REG_BIT_FRM_DIS_FLG(ctx
->reg_idx
));
2120 /* The previous display frame was copied out and can be overwritten */
2121 if (ctx
->display_idx
>= 0 &&
2122 ctx
->display_idx
< ctx
->num_internal_frames
) {
2123 ctx
->frm_dis_flg
&= ~(1 << ctx
->display_idx
);
2124 coda_write(dev
, ctx
->frm_dis_flg
,
2125 CODA_REG_BIT_FRM_DIS_FLG(ctx
->reg_idx
));
2129 * The index of the last decoded frame, not necessarily in
2130 * display order, and the index of the next display frame.
2131 * The latter could have been decoded in a previous run.
2133 decoded_idx
= coda_read(dev
, CODA_RET_DEC_PIC_CUR_IDX
);
2134 display_idx
= coda_read(dev
, CODA_RET_DEC_PIC_FRAME_IDX
);
2136 if (decoded_idx
== -1) {
2137 /* no frame was decoded, but we might have a display frame */
2138 if (display_idx
>= 0 && display_idx
< ctx
->num_internal_frames
)
2139 ctx
->sequence_offset
++;
2140 else if (ctx
->display_idx
< 0)
2142 } else if (decoded_idx
== -2) {
2143 /* no frame was decoded, we still return remaining buffers */
2144 } else if (decoded_idx
< 0 || decoded_idx
>= ctx
->num_internal_frames
) {
2145 v4l2_err(&dev
->v4l2_dev
,
2146 "decoded frame index out of range: %d\n", decoded_idx
);
2148 val
= coda_read(dev
, CODA_RET_DEC_PIC_FRAME_NUM
) - 1;
2149 val
-= ctx
->sequence_offset
;
2150 spin_lock_irqsave(&ctx
->buffer_meta_lock
, flags
);
2151 if (!list_empty(&ctx
->buffer_meta_list
)) {
2152 meta
= list_first_entry(&ctx
->buffer_meta_list
,
2153 struct coda_buffer_meta
, list
);
2154 list_del(&meta
->list
);
2156 spin_unlock_irqrestore(&ctx
->buffer_meta_lock
, flags
);
2158 * Clamp counters to 16 bits for comparison, as the HW
2159 * counter rolls over at this point for h.264. This
2160 * may be different for other formats, but using 16 bits
2161 * should be enough to detect most errors and saves us
2162 * from doing different things based on the format.
2164 if ((val
& 0xffff) != (meta
->sequence
& 0xffff)) {
2165 v4l2_err(&dev
->v4l2_dev
,
2166 "sequence number mismatch (%d(%d) != %d)\n",
2167 val
, ctx
->sequence_offset
,
2170 ctx
->frame_metas
[decoded_idx
] = *meta
;
2173 spin_unlock_irqrestore(&ctx
->buffer_meta_lock
, flags
);
2174 v4l2_err(&dev
->v4l2_dev
, "empty timestamp list!\n");
2175 memset(&ctx
->frame_metas
[decoded_idx
], 0,
2176 sizeof(struct coda_buffer_meta
));
2177 ctx
->frame_metas
[decoded_idx
].sequence
= val
;
2178 ctx
->sequence_offset
++;
2181 trace_coda_dec_pic_done(ctx
, &ctx
->frame_metas
[decoded_idx
]);
2183 val
= coda_read(dev
, CODA_RET_DEC_PIC_TYPE
) & 0x7;
2185 ctx
->frame_types
[decoded_idx
] = V4L2_BUF_FLAG_KEYFRAME
;
2187 ctx
->frame_types
[decoded_idx
] = V4L2_BUF_FLAG_PFRAME
;
2189 ctx
->frame_types
[decoded_idx
] = V4L2_BUF_FLAG_BFRAME
;
2191 ctx
->frame_errors
[decoded_idx
] = err_mb
;
2194 if (display_idx
== -1) {
2196 * no more frames to be decoded, but there could still
2197 * be rotator output to dequeue
2200 } else if (display_idx
== -3) {
2201 /* possibly prescan failure */
2202 } else if (display_idx
< 0 || display_idx
>= ctx
->num_internal_frames
) {
2203 v4l2_err(&dev
->v4l2_dev
,
2204 "presentation frame index out of range: %d\n",
2208 /* If a frame was copied out, return it */
2209 if (ctx
->display_idx
>= 0 &&
2210 ctx
->display_idx
< ctx
->num_internal_frames
) {
2211 dst_buf
= v4l2_m2m_dst_buf_remove(ctx
->fh
.m2m_ctx
);
2212 dst_buf
->sequence
= ctx
->osequence
++;
2214 dst_buf
->field
= V4L2_FIELD_NONE
;
2215 dst_buf
->flags
&= ~(V4L2_BUF_FLAG_KEYFRAME
|
2216 V4L2_BUF_FLAG_PFRAME
|
2217 V4L2_BUF_FLAG_BFRAME
);
2218 dst_buf
->flags
|= ctx
->frame_types
[ctx
->display_idx
];
2219 meta
= &ctx
->frame_metas
[ctx
->display_idx
];
2220 dst_buf
->timecode
= meta
->timecode
;
2221 dst_buf
->vb2_buf
.timestamp
= meta
->timestamp
;
2223 trace_coda_dec_rot_done(ctx
, dst_buf
, meta
);
2225 switch (q_data_dst
->fourcc
) {
2226 case V4L2_PIX_FMT_YUYV
:
2227 payload
= width
* height
* 2;
2229 case V4L2_PIX_FMT_YUV420
:
2230 case V4L2_PIX_FMT_YVU420
:
2231 case V4L2_PIX_FMT_NV12
:
2233 payload
= width
* height
* 3 / 2;
2235 case V4L2_PIX_FMT_YUV422P
:
2236 payload
= width
* height
* 2;
2239 vb2_set_plane_payload(&dst_buf
->vb2_buf
, 0, payload
);
2241 if (ctx
->frame_errors
[ctx
->display_idx
] || err_vdoa
)
2242 coda_m2m_buf_done(ctx
, dst_buf
, VB2_BUF_STATE_ERROR
);
2244 coda_m2m_buf_done(ctx
, dst_buf
, VB2_BUF_STATE_DONE
);
2246 v4l2_dbg(1, coda_debug
, &dev
->v4l2_dev
,
2247 "job finished: decoding frame (%d) (%s)\n",
2249 (dst_buf
->flags
& V4L2_BUF_FLAG_KEYFRAME
) ?
2250 "KEYFRAME" : "PFRAME");
2252 v4l2_dbg(1, coda_debug
, &dev
->v4l2_dev
,
2253 "job finished: no frame decoded\n");
2256 /* The rotator will copy the current display frame next time */
2257 ctx
->display_idx
= display_idx
;
2260 static void coda_decode_timeout(struct coda_ctx
*ctx
)
2262 struct vb2_v4l2_buffer
*dst_buf
;
2265 * For now this only handles the case where we would deadlock with
2266 * userspace, i.e. userspace issued DEC_CMD_STOP and waits for EOS,
2267 * but after a failed decode run we would hold the context and wait for
2268 * userspace to queue more buffers.
2270 if (!(ctx
->bit_stream_param
& CODA_BIT_STREAM_END_FLAG
))
2273 dst_buf
= v4l2_m2m_dst_buf_remove(ctx
->fh
.m2m_ctx
);
2274 dst_buf
->sequence
= ctx
->qsequence
- 1;
2276 coda_m2m_buf_done(ctx
, dst_buf
, VB2_BUF_STATE_ERROR
);
2279 const struct coda_context_ops coda_bit_decode_ops
= {
2280 .queue_init
= coda_decoder_queue_init
,
2281 .reqbufs
= coda_decoder_reqbufs
,
2282 .start_streaming
= coda_start_decoding
,
2283 .prepare_run
= coda_prepare_decode
,
2284 .finish_run
= coda_finish_decode
,
2285 .run_timeout
= coda_decode_timeout
,
2286 .seq_end_work
= coda_seq_end_work
,
2287 .release
= coda_bit_release
,
2290 irqreturn_t
coda_irq_handler(int irq
, void *data
)
2292 struct coda_dev
*dev
= data
;
2293 struct coda_ctx
*ctx
;
2295 /* read status register to attend the IRQ */
2296 coda_read(dev
, CODA_REG_BIT_INT_STATUS
);
2297 coda_write(dev
, CODA_REG_BIT_INT_CLEAR_SET
,
2298 CODA_REG_BIT_INT_CLEAR
);
2300 ctx
= v4l2_m2m_get_curr_priv(dev
->m2m_dev
);
2302 v4l2_err(&dev
->v4l2_dev
,
2303 "Instance released before the end of transaction\n");
2304 mutex_unlock(&dev
->coda_mutex
);
2308 trace_coda_bit_done(ctx
);
2310 if (ctx
->aborting
) {
2311 v4l2_dbg(1, coda_debug
, &ctx
->dev
->v4l2_dev
,
2312 "task has been aborted\n");
2315 if (coda_isbusy(ctx
->dev
)) {
2316 v4l2_dbg(1, coda_debug
, &ctx
->dev
->v4l2_dev
,
2317 "coda is still busy!!!!\n");
2321 complete(&ctx
->completion
);