2 * Copyright (c) 2016 MediaTek Inc.
3 * Author: Daniel Hsiao <daniel.hsiao@mediatek.com>
4 * Kai-Sean Yang <kai-sean.yang@mediatek.com>
5 * Tiffany Lin <tiffany.lin@mediatek.com>
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * version 2 as published by the Free Software Foundation.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
18 #include <linux/slab.h>
19 #include <linux/syscalls.h>
20 #include <linux/delay.h>
21 #include <linux/time.h>
23 #include "../mtk_vcodec_intr.h"
24 #include "../vdec_drv_base.h"
25 #include "../vdec_vpu_if.h"
27 #define VP9_SUPER_FRAME_BS_SZ 64
28 #define MAX_VP9_DPB_SIZE 9
30 #define REFS_PER_FRAME 3
31 #define MAX_NUM_REF_FRAMES 8
32 #define VP9_MAX_FRM_BUF_NUM 9
33 #define VP9_MAX_FRM_BUF_NODE_NUM (VP9_MAX_FRM_BUF_NUM * 2)
36 * struct vp9_dram_buf - contains buffer info for vpu
40 * @padding : for 64 bytes alignment
50 * struct vp9_fb_info - contains frame buffer info
52 * @reserved : reserved field used by vpu
56 unsigned int reserved
[32];
60 * struct vp9_ref_cnt_buf - contains reference buffer information
61 * @buf : referenced frame buffer
62 * @ref_cnt : referenced frame buffer's reference count.
63 * When reference count=0, remove it from reference list
65 struct vp9_ref_cnt_buf
{
66 struct vp9_fb_info buf
;
71 * struct vp9_fb_info - contains current frame's reference buffer information
72 * @buf : reference buffer
73 * @idx : reference buffer index to frm_bufs
74 * @reserved : reserved field used by vpu
77 struct vp9_fb_info
*buf
;
79 unsigned int reserved
[6];
83 * struct vp9_fb_info - contains frame buffer info
84 * @fb : super frame reference frame buffer
85 * @used : this reference frame info entry is used
86 * @padding : for 64 bytes size align
88 struct vp9_sf_ref_fb
{
95 * struct vdec_vp9_vsi - shared buffer between host and VPU firmware
96 * AP-W/R : AP is writer/reader on this item
97 * VPU-W/R: VPU is write/reader on this item
98 * @sf_bs_buf : super frame backup buffer (AP-W, VPU-R)
99 * @sf_ref_fb : record supoer frame reference buffer information
101 * @sf_next_ref_fb_idx : next available super frame (AP-W, VPU-R)
102 * @sf_frm_cnt : super frame count, filled by vpu (AP-R, VPU-W)
103 * @sf_frm_offset : super frame offset, filled by vpu (AP-R, VPU-W)
104 * @sf_frm_sz : super frame size, filled by vpu (AP-R, VPU-W)
105 * @sf_frm_idx : current super frame (AP-R, VPU-W)
106 * @sf_init : inform super frame info already parsed by vpu (AP-R, VPU-W)
107 * @fb : capture buffer (AP-W, VPU-R)
108 * @bs : bs buffer (AP-W, VPU-R)
109 * @cur_fb : current show capture buffer (AP-R/W, VPU-R/W)
110 * @pic_w : picture width (AP-R, VPU-W)
111 * @pic_h : picture height (AP-R, VPU-W)
112 * @buf_w : codec width (AP-R, VPU-W)
113 * @buf_h : coded height (AP-R, VPU-W)
114 * @buf_sz_y_bs : ufo compressed y plane size (AP-R, VPU-W)
115 * @buf_sz_c_bs : ufo compressed cbcr plane size (AP-R, VPU-W)
116 * @buf_len_sz_y : size used to store y plane ufo info (AP-R, VPU-W)
117 * @buf_len_sz_c : size used to store cbcr plane ufo info (AP-R, VPU-W)
119 * @profile : profile sparsed from vpu (AP-R, VPU-W)
120 * @show_frame : display this frame or not (AP-R, VPU-W)
121 * @show_existing_frame : inform this frame is show existing frame
123 * @frm_to_show_idx : index to show frame (AP-R, VPU-W)
125 * @refresh_frm_flags : indicate when frame need to refine reference count
127 * @resolution_changed : resolution change in this frame (AP-R, VPU-W)
129 * @frm_bufs : maintain reference buffer info (AP-R/W, VPU-R/W)
130 * @ref_frm_map : maintain reference buffer map info (AP-R/W, VPU-R/W)
131 * @new_fb_idx : index to frm_bufs array (AP-R, VPU-W)
132 * @frm_num : decoded frame number, include sub-frame count (AP-R, VPU-W)
133 * @mv_buf : motion vector working buffer (AP-W, VPU-R)
134 * @frm_refs : maintain three reference buffer info (AP-R/W, VPU-R/W)
136 struct vdec_vp9_vsi
{
137 unsigned char sf_bs_buf
[VP9_SUPER_FRAME_BS_SZ
];
138 struct vp9_sf_ref_fb sf_ref_fb
[VP9_MAX_FRM_BUF_NUM
-1];
139 int sf_next_ref_fb_idx
;
140 unsigned int sf_frm_cnt
;
141 unsigned int sf_frm_offset
[VP9_MAX_FRM_BUF_NUM
-1];
142 unsigned int sf_frm_sz
[VP9_MAX_FRM_BUF_NUM
-1];
143 unsigned int sf_frm_idx
;
144 unsigned int sf_init
;
146 struct mtk_vcodec_mem bs
;
147 struct vdec_fb cur_fb
;
152 unsigned int buf_sz_y_bs
;
153 unsigned int buf_sz_c_bs
;
154 unsigned int buf_len_sz_y
;
155 unsigned int buf_len_sz_c
;
156 unsigned int profile
;
157 unsigned int show_frame
;
158 unsigned int show_existing_frame
;
159 unsigned int frm_to_show_idx
;
160 unsigned int refresh_frm_flags
;
161 unsigned int resolution_changed
;
163 struct vp9_ref_cnt_buf frm_bufs
[VP9_MAX_FRM_BUF_NUM
];
164 int ref_frm_map
[MAX_NUM_REF_FRAMES
];
165 unsigned int new_fb_idx
;
166 unsigned int frm_num
;
167 struct vp9_dram_buf mv_buf
;
169 struct vp9_ref_buf frm_refs
[REFS_PER_FRAME
];
173 * struct vdec_vp9_inst - vp9 decode instance
174 * @mv_buf : working buffer for mv
175 * @dec_fb : vdec_fb node to link fb to different fb_xxx_list
176 * @available_fb_node_list : current available vdec_fb node
177 * @fb_use_list : current used or referenced vdec_fb
178 * @fb_free_list : current available to free vdec_fb
179 * @fb_disp_list : current available to display vdec_fb
180 * @cur_fb : current frame buffer
181 * @ctx : current decode context
182 * @vpu : vpu instance information
183 * @vsi : shared buffer between host and VPU firmware
184 * @total_frm_cnt : total frame count, it do not include sub-frames in super
186 * @mem : instance memory information
188 struct vdec_vp9_inst
{
189 struct mtk_vcodec_mem mv_buf
;
191 struct vdec_fb_node dec_fb
[VP9_MAX_FRM_BUF_NODE_NUM
];
192 struct list_head available_fb_node_list
;
193 struct list_head fb_use_list
;
194 struct list_head fb_free_list
;
195 struct list_head fb_disp_list
;
196 struct vdec_fb
*cur_fb
;
197 struct mtk_vcodec_ctx
*ctx
;
198 struct vdec_vpu_inst vpu
;
199 struct vdec_vp9_vsi
*vsi
;
200 unsigned int total_frm_cnt
;
201 struct mtk_vcodec_mem mem
;
204 static bool vp9_is_sf_ref_fb(struct vdec_vp9_inst
*inst
, struct vdec_fb
*fb
)
207 struct vdec_vp9_vsi
*vsi
= inst
->vsi
;
209 for (i
= 0; i
< ARRAY_SIZE(vsi
->sf_ref_fb
); i
++) {
210 if (fb
== &vsi
->sf_ref_fb
[i
].fb
)
216 static struct vdec_fb
*vp9_rm_from_fb_use_list(struct vdec_vp9_inst
219 struct vdec_fb
*fb
= NULL
;
220 struct vdec_fb_node
*node
;
222 list_for_each_entry(node
, &inst
->fb_use_list
, list
) {
223 fb
= (struct vdec_fb
*)node
->fb
;
224 if (fb
->base_y
.va
== addr
) {
225 list_move_tail(&node
->list
,
226 &inst
->available_fb_node_list
);
233 static void vp9_add_to_fb_free_list(struct vdec_vp9_inst
*inst
,
236 struct vdec_fb_node
*node
;
239 node
= list_first_entry_or_null(&inst
->available_fb_node_list
,
240 struct vdec_fb_node
, list
);
244 list_move_tail(&node
->list
, &inst
->fb_free_list
);
247 mtk_vcodec_debug(inst
, "No free fb node");
251 static void vp9_free_sf_ref_fb(struct vdec_fb
*fb
)
253 struct vp9_sf_ref_fb
*sf_ref_fb
=
254 container_of(fb
, struct vp9_sf_ref_fb
, fb
);
259 static void vp9_ref_cnt_fb(struct vdec_vp9_inst
*inst
, int *idx
,
262 struct vdec_vp9_vsi
*vsi
= inst
->vsi
;
265 if (ref_idx
>= 0 && vsi
->frm_bufs
[ref_idx
].ref_cnt
> 0) {
266 vsi
->frm_bufs
[ref_idx
].ref_cnt
--;
268 if (vsi
->frm_bufs
[ref_idx
].ref_cnt
== 0) {
269 if (!vp9_is_sf_ref_fb(inst
,
270 vsi
->frm_bufs
[ref_idx
].buf
.fb
)) {
273 fb
= vp9_rm_from_fb_use_list(inst
,
274 vsi
->frm_bufs
[ref_idx
].buf
.fb
->base_y
.va
);
275 vp9_add_to_fb_free_list(inst
, fb
);
278 vsi
->frm_bufs
[ref_idx
].buf
.fb
);
283 vsi
->frm_bufs
[new_idx
].ref_cnt
++;
286 static void vp9_free_all_sf_ref_fb(struct vdec_vp9_inst
*inst
)
289 struct vdec_vp9_vsi
*vsi
= inst
->vsi
;
291 for (i
= 0; i
< ARRAY_SIZE(vsi
->sf_ref_fb
); i
++) {
292 if (vsi
->sf_ref_fb
[i
].fb
.base_y
.va
) {
293 mtk_vcodec_mem_free(inst
->ctx
,
294 &vsi
->sf_ref_fb
[i
].fb
.base_y
);
295 mtk_vcodec_mem_free(inst
->ctx
,
296 &vsi
->sf_ref_fb
[i
].fb
.base_c
);
297 vsi
->sf_ref_fb
[i
].used
= 0;
302 /* For each sub-frame except the last one, the driver will dynamically
303 * allocate reference buffer by calling vp9_get_sf_ref_fb()
304 * The last sub-frame will use the original fb provided by the
305 * vp9_dec_decode() interface
307 static int vp9_get_sf_ref_fb(struct vdec_vp9_inst
*inst
)
310 struct mtk_vcodec_mem
*mem_basy_y
;
311 struct mtk_vcodec_mem
*mem_basy_c
;
312 struct vdec_vp9_vsi
*vsi
= inst
->vsi
;
315 idx
< ARRAY_SIZE(vsi
->sf_ref_fb
);
317 if (vsi
->sf_ref_fb
[idx
].fb
.base_y
.va
&&
318 vsi
->sf_ref_fb
[idx
].used
== 0) {
324 idx
< ARRAY_SIZE(vsi
->sf_ref_fb
);
326 if (vsi
->sf_ref_fb
[idx
].fb
.base_y
.va
== NULL
)
330 if (idx
== ARRAY_SIZE(vsi
->sf_ref_fb
)) {
331 mtk_vcodec_err(inst
, "List Full");
335 mem_basy_y
= &vsi
->sf_ref_fb
[idx
].fb
.base_y
;
336 mem_basy_y
->size
= vsi
->buf_sz_y_bs
+
339 if (mtk_vcodec_mem_alloc(inst
->ctx
, mem_basy_y
)) {
340 mtk_vcodec_err(inst
, "Cannot allocate sf_ref_buf y_buf");
344 mem_basy_c
= &vsi
->sf_ref_fb
[idx
].fb
.base_c
;
345 mem_basy_c
->size
= vsi
->buf_sz_c_bs
+
348 if (mtk_vcodec_mem_alloc(inst
->ctx
, mem_basy_c
)) {
349 mtk_vcodec_err(inst
, "Cannot allocate sf_ref_fb c_buf");
352 vsi
->sf_ref_fb
[idx
].used
= 0;
357 static bool vp9_alloc_work_buf(struct vdec_vp9_inst
*inst
)
359 struct vdec_vp9_vsi
*vsi
= inst
->vsi
;
361 struct mtk_vcodec_mem
*mem
;
363 unsigned int max_pic_w
;
364 unsigned int max_pic_h
;
367 if (!(inst
->ctx
->dev
->dec_capability
&
368 VCODEC_CAPABILITY_4K_DISABLED
)) {
369 max_pic_w
= VCODEC_DEC_4K_CODED_WIDTH
;
370 max_pic_h
= VCODEC_DEC_4K_CODED_HEIGHT
;
372 max_pic_w
= MTK_VDEC_MAX_W
;
373 max_pic_h
= MTK_VDEC_MAX_H
;
376 if ((vsi
->pic_w
> max_pic_w
) ||
377 (vsi
->pic_h
> max_pic_h
)) {
378 mtk_vcodec_err(inst
, "Invalid w/h %d/%d",
379 vsi
->pic_w
, vsi
->pic_h
);
383 mtk_vcodec_debug(inst
, "BUF CHG(%d): w/h/sb_w/sb_h=%d/%d/%d/%d",
384 vsi
->resolution_changed
,
393 mtk_vcodec_mem_free(inst
->ctx
, mem
);
395 mem
->size
= ((vsi
->buf_w
/ 64) *
396 (vsi
->buf_h
/ 64) + 2) * 36 * 16;
398 result
= mtk_vcodec_mem_alloc(inst
->ctx
, mem
);
401 mtk_vcodec_err(inst
, "Cannot allocate mv_buf");
404 /* Set the va again */
405 vsi
->mv_buf
.va
= (unsigned long)mem
->va
;
406 vsi
->mv_buf
.pa
= (unsigned long)mem
->dma_addr
;
407 vsi
->mv_buf
.sz
= (unsigned int)mem
->size
;
409 vp9_free_all_sf_ref_fb(inst
);
410 vsi
->sf_next_ref_fb_idx
= vp9_get_sf_ref_fb(inst
);
415 static bool vp9_add_to_fb_disp_list(struct vdec_vp9_inst
*inst
,
418 struct vdec_fb_node
*node
;
421 mtk_vcodec_err(inst
, "fb == NULL");
425 node
= list_first_entry_or_null(&inst
->available_fb_node_list
,
426 struct vdec_fb_node
, list
);
429 list_move_tail(&node
->list
, &inst
->fb_disp_list
);
431 mtk_vcodec_err(inst
, "No available fb node");
438 /* If any buffer updating is signaled it should be done here. */
439 static void vp9_swap_frm_bufs(struct vdec_vp9_inst
*inst
)
441 struct vdec_vp9_vsi
*vsi
= inst
->vsi
;
442 struct vp9_fb_info
*frm_to_show
;
443 int ref_index
= 0, mask
;
445 for (mask
= vsi
->refresh_frm_flags
; mask
; mask
>>= 1) {
447 vp9_ref_cnt_fb(inst
, &vsi
->ref_frm_map
[ref_index
],
452 frm_to_show
= &vsi
->frm_bufs
[vsi
->new_fb_idx
].buf
;
453 vsi
->frm_bufs
[vsi
->new_fb_idx
].ref_cnt
--;
455 if (frm_to_show
->fb
!= inst
->cur_fb
) {
456 /* This frame is show exist frame and no decode output
457 * copy frame data from frm_to_show to current CAPTURE
460 if ((frm_to_show
->fb
!= NULL
) &&
461 (inst
->cur_fb
->base_y
.size
>=
462 frm_to_show
->fb
->base_y
.size
)) {
463 memcpy((void *)inst
->cur_fb
->base_y
.va
,
464 (void *)frm_to_show
->fb
->base_y
.va
,
467 memcpy((void *)inst
->cur_fb
->base_c
.va
,
468 (void *)frm_to_show
->fb
->base_c
.va
,
472 /* After resolution change case, current CAPTURE buffer
473 * may have less buffer size than frm_to_show buffer
476 if (frm_to_show
->fb
!= NULL
)
478 "inst->cur_fb->base_y.size=%zu, frm_to_show->fb.base_y.size=%zu",
479 inst
->cur_fb
->base_y
.size
,
480 frm_to_show
->fb
->base_y
.size
);
482 if (!vp9_is_sf_ref_fb(inst
, inst
->cur_fb
)) {
484 vp9_add_to_fb_disp_list(inst
, inst
->cur_fb
);
487 if (!vp9_is_sf_ref_fb(inst
, inst
->cur_fb
)) {
489 vp9_add_to_fb_disp_list(inst
, frm_to_show
->fb
);
493 /* when ref_cnt ==0, move this fb to fb_free_list. v4l2 driver will
496 if (vsi
->frm_bufs
[vsi
->new_fb_idx
].ref_cnt
== 0) {
497 if (!vp9_is_sf_ref_fb(
498 inst
, vsi
->frm_bufs
[vsi
->new_fb_idx
].buf
.fb
)) {
501 fb
= vp9_rm_from_fb_use_list(inst
,
502 vsi
->frm_bufs
[vsi
->new_fb_idx
].buf
.fb
->base_y
.va
);
504 vp9_add_to_fb_free_list(inst
, fb
);
507 vsi
->frm_bufs
[vsi
->new_fb_idx
].buf
.fb
);
511 /* if this super frame and it is not last sub-frame, get next fb for
514 if (vsi
->sf_frm_cnt
> 0 && vsi
->sf_frm_idx
!= vsi
->sf_frm_cnt
- 1)
515 vsi
->sf_next_ref_fb_idx
= vp9_get_sf_ref_fb(inst
);
518 static bool vp9_wait_dec_end(struct vdec_vp9_inst
*inst
)
520 struct mtk_vcodec_ctx
*ctx
= inst
->ctx
;
522 mtk_vcodec_wait_for_done_ctx(inst
->ctx
,
523 MTK_INST_IRQ_RECEIVED
,
524 WAIT_INTR_TIMEOUT_MS
);
526 if (ctx
->irq_status
& MTK_VDEC_IRQ_STATUS_DEC_SUCCESS
)
532 static struct vdec_vp9_inst
*vp9_alloc_inst(struct mtk_vcodec_ctx
*ctx
)
535 struct mtk_vcodec_mem mem
;
536 struct vdec_vp9_inst
*inst
;
538 memset(&mem
, 0, sizeof(mem
));
539 mem
.size
= sizeof(struct vdec_vp9_inst
);
540 result
= mtk_vcodec_mem_alloc(ctx
, &mem
);
550 static void vp9_free_inst(struct vdec_vp9_inst
*inst
)
552 struct mtk_vcodec_mem mem
;
556 mtk_vcodec_mem_free(inst
->ctx
, &mem
);
559 static bool vp9_decode_end_proc(struct vdec_vp9_inst
*inst
)
561 struct vdec_vp9_vsi
*vsi
= inst
->vsi
;
564 if (!vsi
->show_existing_frame
) {
565 ret
= vp9_wait_dec_end(inst
);
567 mtk_vcodec_err(inst
, "Decode failed, Decode Timeout @[%d]",
572 if (vpu_dec_end(&inst
->vpu
)) {
573 mtk_vcodec_err(inst
, "vp9_dec_vpu_end failed");
576 mtk_vcodec_debug(inst
, "Decode Ok @%d (%d/%d)", vsi
->frm_num
,
577 vsi
->pic_w
, vsi
->pic_h
);
579 mtk_vcodec_debug(inst
, "Decode Ok @%d (show_existing_frame)",
583 vp9_swap_frm_bufs(inst
);
588 static bool vp9_is_last_sub_frm(struct vdec_vp9_inst
*inst
)
590 struct vdec_vp9_vsi
*vsi
= inst
->vsi
;
592 if (vsi
->sf_frm_cnt
<= 0 || vsi
->sf_frm_idx
== vsi
->sf_frm_cnt
)
598 static struct vdec_fb
*vp9_rm_from_fb_disp_list(struct vdec_vp9_inst
*inst
)
600 struct vdec_fb_node
*node
;
601 struct vdec_fb
*fb
= NULL
;
603 node
= list_first_entry_or_null(&inst
->fb_disp_list
,
604 struct vdec_fb_node
, list
);
606 fb
= (struct vdec_fb
*)node
->fb
;
607 fb
->status
|= FB_ST_DISPLAY
;
608 list_move_tail(&node
->list
, &inst
->available_fb_node_list
);
609 mtk_vcodec_debug(inst
, "[FB] get disp fb %p st=%d",
610 node
->fb
, fb
->status
);
612 mtk_vcodec_debug(inst
, "[FB] there is no disp fb");
617 static bool vp9_add_to_fb_use_list(struct vdec_vp9_inst
*inst
,
620 struct vdec_fb_node
*node
;
623 mtk_vcodec_debug(inst
, "fb == NULL");
627 node
= list_first_entry_or_null(&inst
->available_fb_node_list
,
628 struct vdec_fb_node
, list
);
631 list_move_tail(&node
->list
, &inst
->fb_use_list
);
633 mtk_vcodec_err(inst
, "No free fb node");
639 static void vp9_reset(struct vdec_vp9_inst
*inst
)
641 struct vdec_fb_node
*node
, *tmp
;
643 list_for_each_entry_safe(node
, tmp
, &inst
->fb_use_list
, list
)
644 list_move_tail(&node
->list
, &inst
->fb_free_list
);
646 vp9_free_all_sf_ref_fb(inst
);
647 inst
->vsi
->sf_next_ref_fb_idx
= vp9_get_sf_ref_fb(inst
);
649 if (vpu_dec_reset(&inst
->vpu
))
650 mtk_vcodec_err(inst
, "vp9_dec_vpu_reset failed");
652 /* Set the va again, since vpu_dec_reset will clear mv_buf in vpu */
653 inst
->vsi
->mv_buf
.va
= (unsigned long)inst
->mv_buf
.va
;
654 inst
->vsi
->mv_buf
.pa
= (unsigned long)inst
->mv_buf
.dma_addr
;
655 inst
->vsi
->mv_buf
.sz
= (unsigned long)inst
->mv_buf
.size
;
658 static void init_all_fb_lists(struct vdec_vp9_inst
*inst
)
662 INIT_LIST_HEAD(&inst
->available_fb_node_list
);
663 INIT_LIST_HEAD(&inst
->fb_use_list
);
664 INIT_LIST_HEAD(&inst
->fb_free_list
);
665 INIT_LIST_HEAD(&inst
->fb_disp_list
);
667 for (i
= 0; i
< ARRAY_SIZE(inst
->dec_fb
); i
++) {
668 INIT_LIST_HEAD(&inst
->dec_fb
[i
].list
);
669 inst
->dec_fb
[i
].fb
= NULL
;
670 list_add_tail(&inst
->dec_fb
[i
].list
,
671 &inst
->available_fb_node_list
);
675 static void get_pic_info(struct vdec_vp9_inst
*inst
, struct vdec_pic_info
*pic
)
677 pic
->y_bs_sz
= inst
->vsi
->buf_sz_y_bs
;
678 pic
->c_bs_sz
= inst
->vsi
->buf_sz_c_bs
;
679 pic
->y_len_sz
= inst
->vsi
->buf_len_sz_y
;
680 pic
->c_len_sz
= inst
->vsi
->buf_len_sz_c
;
682 pic
->pic_w
= inst
->vsi
->pic_w
;
683 pic
->pic_h
= inst
->vsi
->pic_h
;
684 pic
->buf_w
= inst
->vsi
->buf_w
;
685 pic
->buf_h
= inst
->vsi
->buf_h
;
687 mtk_vcodec_debug(inst
, "pic(%d, %d), buf(%d, %d)",
688 pic
->pic_w
, pic
->pic_h
, pic
->buf_w
, pic
->buf_h
);
689 mtk_vcodec_debug(inst
, "Y(%d, %d), C(%d, %d)", pic
->y_bs_sz
,
690 pic
->y_len_sz
, pic
->c_bs_sz
, pic
->c_len_sz
);
693 static void get_disp_fb(struct vdec_vp9_inst
*inst
, struct vdec_fb
**out_fb
)
696 *out_fb
= vp9_rm_from_fb_disp_list(inst
);
698 (*out_fb
)->status
|= FB_ST_DISPLAY
;
701 static void get_free_fb(struct vdec_vp9_inst
*inst
, struct vdec_fb
**out_fb
)
703 struct vdec_fb_node
*node
;
704 struct vdec_fb
*fb
= NULL
;
706 node
= list_first_entry_or_null(&inst
->fb_free_list
,
707 struct vdec_fb_node
, list
);
709 list_move_tail(&node
->list
, &inst
->available_fb_node_list
);
710 fb
= (struct vdec_fb
*)node
->fb
;
711 fb
->status
|= FB_ST_FREE
;
712 mtk_vcodec_debug(inst
, "[FB] get free fb %p st=%d",
713 node
->fb
, fb
->status
);
715 mtk_vcodec_debug(inst
, "[FB] there is no free fb");
721 static void vdec_vp9_deinit(unsigned long h_vdec
)
723 struct vdec_vp9_inst
*inst
= (struct vdec_vp9_inst
*)h_vdec
;
724 struct mtk_vcodec_mem
*mem
;
727 ret
= vpu_dec_deinit(&inst
->vpu
);
729 mtk_vcodec_err(inst
, "vpu_dec_deinit failed");
733 mtk_vcodec_mem_free(inst
->ctx
, mem
);
735 vp9_free_all_sf_ref_fb(inst
);
739 static int vdec_vp9_init(struct mtk_vcodec_ctx
*ctx
, unsigned long *h_vdec
)
741 struct vdec_vp9_inst
*inst
;
743 inst
= vp9_alloc_inst(ctx
);
747 inst
->total_frm_cnt
= 0;
750 inst
->vpu
.id
= IPI_VDEC_VP9
;
751 inst
->vpu
.dev
= ctx
->dev
->vpu_plat_dev
;
753 inst
->vpu
.handler
= vpu_dec_ipi_handler
;
755 if (vpu_dec_init(&inst
->vpu
)) {
756 mtk_vcodec_err(inst
, "vp9_dec_vpu_init failed");
757 goto err_deinit_inst
;
760 inst
->vsi
= (struct vdec_vp9_vsi
*)inst
->vpu
.vsi
;
761 init_all_fb_lists(inst
);
763 (*h_vdec
) = (unsigned long)inst
;
772 static int vdec_vp9_decode(unsigned long h_vdec
, struct mtk_vcodec_mem
*bs
,
773 struct vdec_fb
*fb
, bool *res_chg
)
776 struct vdec_vp9_inst
*inst
= (struct vdec_vp9_inst
*)h_vdec
;
777 struct vdec_vp9_vsi
*vsi
= inst
->vsi
;
783 if ((bs
== NULL
) && (fb
== NULL
)) {
784 mtk_vcodec_debug(inst
, "[EOS]");
790 mtk_vcodec_err(inst
, "bs == NULL");
794 mtk_vcodec_debug(inst
, "Input BS Size = %zu", bs
->size
);
797 struct vdec_fb
*cur_fb
= NULL
;
799 data
[0] = *((unsigned int *)bs
->va
);
800 data
[1] = *((unsigned int *)(bs
->va
+ 4));
801 data
[2] = *((unsigned int *)(bs
->va
+ 8));
809 unsigned int sf_bs_sz
;
810 unsigned int sf_bs_off
;
811 unsigned char *sf_bs_src
;
812 unsigned char *sf_bs_dst
;
814 sf_bs_sz
= bs
->size
> VP9_SUPER_FRAME_BS_SZ
?
815 VP9_SUPER_FRAME_BS_SZ
: bs
->size
;
816 sf_bs_off
= VP9_SUPER_FRAME_BS_SZ
- sf_bs_sz
;
817 sf_bs_src
= bs
->va
+ bs
->size
- sf_bs_sz
;
818 sf_bs_dst
= vsi
->sf_bs_buf
+ sf_bs_off
;
819 memcpy(sf_bs_dst
, sf_bs_src
, sf_bs_sz
);
821 if ((vsi
->sf_frm_cnt
> 0) &&
822 (vsi
->sf_frm_idx
< vsi
->sf_frm_cnt
)) {
823 unsigned int idx
= vsi
->sf_frm_idx
;
825 memcpy((void *)bs
->va
,
827 vsi
->sf_frm_offset
[idx
]),
828 vsi
->sf_frm_sz
[idx
]);
831 ret
= vpu_dec_start(&inst
->vpu
, data
, 3);
833 mtk_vcodec_err(inst
, "vpu_dec_start failed");
837 if (vsi
->resolution_changed
) {
838 if (!vp9_alloc_work_buf(inst
)) {
844 if (vsi
->sf_frm_cnt
> 0) {
845 cur_fb
= &vsi
->sf_ref_fb
[vsi
->sf_next_ref_fb_idx
].fb
;
847 if (vsi
->sf_frm_idx
< vsi
->sf_frm_cnt
)
848 inst
->cur_fb
= cur_fb
;
855 vsi
->frm_bufs
[vsi
->new_fb_idx
].buf
.fb
= inst
->cur_fb
;
856 if (!vp9_is_sf_ref_fb(inst
, inst
->cur_fb
))
857 vp9_add_to_fb_use_list(inst
, inst
->cur_fb
);
859 mtk_vcodec_debug(inst
, "[#pic %d]", vsi
->frm_num
);
861 if (vsi
->show_existing_frame
)
862 mtk_vcodec_debug(inst
,
863 "drv->new_fb_idx=%d, drv->frm_to_show_idx=%d",
864 vsi
->new_fb_idx
, vsi
->frm_to_show_idx
);
866 if (vsi
->show_existing_frame
&& (vsi
->frm_to_show_idx
<
867 VP9_MAX_FRM_BUF_NUM
)) {
869 "Skip Decode drv->new_fb_idx=%d, drv->frm_to_show_idx=%d",
870 vsi
->new_fb_idx
, vsi
->frm_to_show_idx
);
872 vp9_ref_cnt_fb(inst
, &vsi
->new_fb_idx
,
873 vsi
->frm_to_show_idx
);
878 /* VPU assign the buffer pointer in its address space,
881 for (i
= 0; i
< ARRAY_SIZE(vsi
->frm_refs
); i
++) {
882 unsigned int idx
= vsi
->frm_refs
[i
].idx
;
884 vsi
->frm_refs
[i
].buf
= &vsi
->frm_bufs
[idx
].buf
;
887 if (vsi
->resolution_changed
) {
889 mtk_vcodec_debug(inst
, "VDEC_ST_RESOLUTION_CHANGED");
895 if (vp9_decode_end_proc(inst
) != true) {
896 mtk_vcodec_err(inst
, "vp9_decode_end_proc");
901 if (vp9_is_last_sub_frm(inst
))
905 inst
->total_frm_cnt
++;
909 vp9_add_to_fb_free_list(inst
, fb
);
914 static void get_crop_info(struct vdec_vp9_inst
*inst
, struct v4l2_rect
*cr
)
918 cr
->width
= inst
->vsi
->pic_w
;
919 cr
->height
= inst
->vsi
->pic_h
;
920 mtk_vcodec_debug(inst
, "get crop info l=%d, t=%d, w=%d, h=%d\n",
921 cr
->left
, cr
->top
, cr
->width
, cr
->height
);
924 static int vdec_vp9_get_param(unsigned long h_vdec
,
925 enum vdec_get_param_type type
, void *out
)
927 struct vdec_vp9_inst
*inst
= (struct vdec_vp9_inst
*)h_vdec
;
931 case GET_PARAM_DISP_FRAME_BUFFER
:
932 get_disp_fb(inst
, out
);
934 case GET_PARAM_FREE_FRAME_BUFFER
:
935 get_free_fb(inst
, out
);
937 case GET_PARAM_PIC_INFO
:
938 get_pic_info(inst
, out
);
940 case GET_PARAM_DPB_SIZE
:
941 *((unsigned int *)out
) = MAX_VP9_DPB_SIZE
;
943 case GET_PARAM_CROP_INFO
:
944 get_crop_info(inst
, out
);
947 mtk_vcodec_err(inst
, "not supported param type %d", type
);
955 static struct vdec_common_if vdec_vp9_if
= {
962 struct vdec_common_if
*get_vp9_dec_comm_if(void);
964 struct vdec_common_if
*get_vp9_dec_comm_if(void)