1 // SPDX-License-Identifier: GPL-2.0-only
3 * drivers/media/platform/s5p-mfc/s5p_mfc_opr_v6.c
5 * Samsung MFC (Multi Function Codec - FIMV) driver
6 * This file contains hw related functions.
8 * Copyright (c) 2012 Samsung Electronics Co., Ltd.
9 * http://www.samsung.com/
14 #include <linux/delay.h>
17 #include <linux/jiffies.h>
18 #include <linux/firmware.h>
19 #include <linux/err.h>
20 #include <linux/sched.h>
21 #include <linux/dma-mapping.h>
23 #include <asm/cacheflush.h>
25 #include "s5p_mfc_common.h"
26 #include "s5p_mfc_cmd.h"
27 #include "s5p_mfc_intr.h"
28 #include "s5p_mfc_pm.h"
29 #include "s5p_mfc_debug.h"
30 #include "s5p_mfc_opr.h"
31 #include "s5p_mfc_opr_v6.h"
33 /* #define S5P_MFC_DEBUG_REGWRITE */
34 #ifdef S5P_MFC_DEBUG_REGWRITE
36 #define writel(v, r) \
38 pr_err("MFCWRITE(%p): %08x\n", r, (unsigned int)v); \
41 #endif /* S5P_MFC_DEBUG_REGWRITE */
43 #define IS_MFCV6_V2(dev) (!IS_MFCV7_PLUS(dev) && dev->fw_ver == MFC_FW_V2)
45 /* Allocate temporary buffers for decoding */
46 static int s5p_mfc_alloc_dec_temp_buffers_v6(struct s5p_mfc_ctx
*ctx
)
53 /* Release temporary buffers for decoding */
54 static void s5p_mfc_release_dec_desc_buffer_v6(struct s5p_mfc_ctx
*ctx
)
59 /* Allocate codec buffers */
60 static int s5p_mfc_alloc_codec_buffers_v6(struct s5p_mfc_ctx
*ctx
)
62 struct s5p_mfc_dev
*dev
= ctx
->dev
;
63 unsigned int mb_width
, mb_height
;
64 unsigned int lcu_width
= 0, lcu_height
= 0;
67 mb_width
= MB_WIDTH(ctx
->img_width
);
68 mb_height
= MB_HEIGHT(ctx
->img_height
);
70 if (ctx
->type
== MFCINST_DECODER
) {
71 mfc_debug(2, "Luma size:%d Chroma size:%d MV size:%d\n",
72 ctx
->luma_size
, ctx
->chroma_size
, ctx
->mv_size
);
73 mfc_debug(2, "Totals bufs: %d\n", ctx
->total_dpb_count
);
74 } else if (ctx
->type
== MFCINST_ENCODER
) {
76 ctx
->tmv_buffer_size
= 0;
77 } else if (IS_MFCV8_PLUS(dev
))
78 ctx
->tmv_buffer_size
= S5P_FIMV_NUM_TMV_BUFFERS_V6
*
79 ALIGN(S5P_FIMV_TMV_BUFFER_SIZE_V8(mb_width
, mb_height
),
80 S5P_FIMV_TMV_BUFFER_ALIGN_V6
);
82 ctx
->tmv_buffer_size
= S5P_FIMV_NUM_TMV_BUFFERS_V6
*
83 ALIGN(S5P_FIMV_TMV_BUFFER_SIZE_V6(mb_width
, mb_height
),
84 S5P_FIMV_TMV_BUFFER_ALIGN_V6
);
86 lcu_width
= S5P_MFC_LCU_WIDTH(ctx
->img_width
);
87 lcu_height
= S5P_MFC_LCU_HEIGHT(ctx
->img_height
);
88 if (ctx
->codec_mode
!= S5P_FIMV_CODEC_HEVC_ENC
) {
90 ALIGN((mb_width
* 16), 64)
91 * ALIGN((mb_height
* 16), 32)
93 ctx
->chroma_dpb_size
=
94 ALIGN((mb_width
* 16), 64)
99 ALIGN((lcu_width
* 32), 64)
100 * ALIGN((lcu_height
* 32), 32)
102 ctx
->chroma_dpb_size
=
103 ALIGN((lcu_width
* 32), 64)
108 ctx
->luma_dpb_size
= ALIGN((mb_width
* mb_height
) *
109 S5P_FIMV_LUMA_MB_TO_PIXEL_V6
,
110 S5P_FIMV_LUMA_DPB_BUFFER_ALIGN_V6
);
111 ctx
->chroma_dpb_size
= ALIGN((mb_width
* mb_height
) *
112 S5P_FIMV_CHROMA_MB_TO_PIXEL_V6
,
113 S5P_FIMV_CHROMA_DPB_BUFFER_ALIGN_V6
);
115 if (IS_MFCV8_PLUS(dev
))
116 ctx
->me_buffer_size
= ALIGN(S5P_FIMV_ME_BUFFER_SIZE_V8(
117 ctx
->img_width
, ctx
->img_height
,
118 mb_width
, mb_height
),
119 S5P_FIMV_ME_BUFFER_ALIGN_V6
);
121 ctx
->me_buffer_size
= ALIGN(S5P_FIMV_ME_BUFFER_SIZE_V6(
122 ctx
->img_width
, ctx
->img_height
,
123 mb_width
, mb_height
),
124 S5P_FIMV_ME_BUFFER_ALIGN_V6
);
126 mfc_debug(2, "recon luma size: %zu chroma size: %zu\n",
127 ctx
->luma_dpb_size
, ctx
->chroma_dpb_size
);
132 /* Codecs have different memory requirements */
133 switch (ctx
->codec_mode
) {
134 case S5P_MFC_CODEC_H264_DEC
:
135 case S5P_MFC_CODEC_H264_MVC_DEC
:
137 mfc_debug(2, "Use min scratch buffer size\n");
138 else if (IS_MFCV8_PLUS(dev
))
139 ctx
->scratch_buf_size
=
140 S5P_FIMV_SCRATCH_BUF_SIZE_H264_DEC_V8(
144 ctx
->scratch_buf_size
=
145 S5P_FIMV_SCRATCH_BUF_SIZE_H264_DEC_V6(
148 ctx
->scratch_buf_size
= ALIGN(ctx
->scratch_buf_size
,
149 S5P_FIMV_SCRATCH_BUFFER_ALIGN_V6
);
151 ctx
->scratch_buf_size
+
152 (ctx
->mv_count
* ctx
->mv_size
);
154 case S5P_MFC_CODEC_MPEG4_DEC
:
156 mfc_debug(2, "Use min scratch buffer size\n");
157 else if (IS_MFCV7_PLUS(dev
)) {
158 ctx
->scratch_buf_size
=
159 S5P_FIMV_SCRATCH_BUF_SIZE_MPEG4_DEC_V7(
163 ctx
->scratch_buf_size
=
164 S5P_FIMV_SCRATCH_BUF_SIZE_MPEG4_DEC_V6(
169 ctx
->scratch_buf_size
= ALIGN(ctx
->scratch_buf_size
,
170 S5P_FIMV_SCRATCH_BUFFER_ALIGN_V6
);
171 ctx
->bank1
.size
= ctx
->scratch_buf_size
;
173 case S5P_MFC_CODEC_VC1RCV_DEC
:
174 case S5P_MFC_CODEC_VC1_DEC
:
176 mfc_debug(2, "Use min scratch buffer size\n");
178 ctx
->scratch_buf_size
=
179 S5P_FIMV_SCRATCH_BUF_SIZE_VC1_DEC_V6(
183 ctx
->scratch_buf_size
= ALIGN(ctx
->scratch_buf_size
,
184 S5P_FIMV_SCRATCH_BUFFER_ALIGN_V6
);
185 ctx
->bank1
.size
= ctx
->scratch_buf_size
;
187 case S5P_MFC_CODEC_MPEG2_DEC
:
191 case S5P_MFC_CODEC_H263_DEC
:
193 mfc_debug(2, "Use min scratch buffer size\n");
195 ctx
->scratch_buf_size
=
196 S5P_FIMV_SCRATCH_BUF_SIZE_H263_DEC_V6(
199 ctx
->scratch_buf_size
= ALIGN(ctx
->scratch_buf_size
,
200 S5P_FIMV_SCRATCH_BUFFER_ALIGN_V6
);
201 ctx
->bank1
.size
= ctx
->scratch_buf_size
;
203 case S5P_MFC_CODEC_VP8_DEC
:
205 mfc_debug(2, "Use min scratch buffer size\n");
206 else if (IS_MFCV8_PLUS(dev
))
207 ctx
->scratch_buf_size
=
208 S5P_FIMV_SCRATCH_BUF_SIZE_VP8_DEC_V8(
212 ctx
->scratch_buf_size
=
213 S5P_FIMV_SCRATCH_BUF_SIZE_VP8_DEC_V6(
216 ctx
->scratch_buf_size
= ALIGN(ctx
->scratch_buf_size
,
217 S5P_FIMV_SCRATCH_BUFFER_ALIGN_V6
);
218 ctx
->bank1
.size
= ctx
->scratch_buf_size
;
220 case S5P_MFC_CODEC_HEVC_DEC
:
221 mfc_debug(2, "Use min scratch buffer size\n");
223 ctx
->scratch_buf_size
+
224 (ctx
->mv_count
* ctx
->mv_size
);
226 case S5P_MFC_CODEC_VP9_DEC
:
227 mfc_debug(2, "Use min scratch buffer size\n");
229 ctx
->scratch_buf_size
+
230 DEC_VP9_STATIC_BUFFER_SIZE
;
232 case S5P_MFC_CODEC_H264_ENC
:
233 if (IS_MFCV10(dev
)) {
234 mfc_debug(2, "Use min scratch buffer size\n");
235 ctx
->me_buffer_size
=
236 ALIGN(ENC_V100_H264_ME_SIZE(mb_width
, mb_height
), 16);
237 } else if (IS_MFCV8_PLUS(dev
))
238 ctx
->scratch_buf_size
=
239 S5P_FIMV_SCRATCH_BUF_SIZE_H264_ENC_V8(
243 ctx
->scratch_buf_size
=
244 S5P_FIMV_SCRATCH_BUF_SIZE_H264_ENC_V6(
247 ctx
->scratch_buf_size
= ALIGN(ctx
->scratch_buf_size
,
248 S5P_FIMV_SCRATCH_BUFFER_ALIGN_V6
);
250 ctx
->scratch_buf_size
+ ctx
->tmv_buffer_size
+
251 (ctx
->pb_count
* (ctx
->luma_dpb_size
+
252 ctx
->chroma_dpb_size
+ ctx
->me_buffer_size
));
255 case S5P_MFC_CODEC_MPEG4_ENC
:
256 case S5P_MFC_CODEC_H263_ENC
:
257 if (IS_MFCV10(dev
)) {
258 mfc_debug(2, "Use min scratch buffer size\n");
259 ctx
->me_buffer_size
=
260 ALIGN(ENC_V100_MPEG4_ME_SIZE(mb_width
,
263 ctx
->scratch_buf_size
=
264 S5P_FIMV_SCRATCH_BUF_SIZE_MPEG4_ENC_V6(
267 ctx
->scratch_buf_size
= ALIGN(ctx
->scratch_buf_size
,
268 S5P_FIMV_SCRATCH_BUFFER_ALIGN_V6
);
270 ctx
->scratch_buf_size
+ ctx
->tmv_buffer_size
+
271 (ctx
->pb_count
* (ctx
->luma_dpb_size
+
272 ctx
->chroma_dpb_size
+ ctx
->me_buffer_size
));
275 case S5P_MFC_CODEC_VP8_ENC
:
276 if (IS_MFCV10(dev
)) {
277 mfc_debug(2, "Use min scratch buffer size\n");
278 ctx
->me_buffer_size
=
279 ALIGN(ENC_V100_VP8_ME_SIZE(mb_width
, mb_height
),
281 } else if (IS_MFCV8_PLUS(dev
))
282 ctx
->scratch_buf_size
=
283 S5P_FIMV_SCRATCH_BUF_SIZE_VP8_ENC_V8(
287 ctx
->scratch_buf_size
=
288 S5P_FIMV_SCRATCH_BUF_SIZE_VP8_ENC_V7(
291 ctx
->scratch_buf_size
= ALIGN(ctx
->scratch_buf_size
,
292 S5P_FIMV_SCRATCH_BUFFER_ALIGN_V6
);
294 ctx
->scratch_buf_size
+ ctx
->tmv_buffer_size
+
295 (ctx
->pb_count
* (ctx
->luma_dpb_size
+
296 ctx
->chroma_dpb_size
+ ctx
->me_buffer_size
));
299 case S5P_MFC_CODEC_HEVC_ENC
:
300 mfc_debug(2, "Use min scratch buffer size\n");
301 ctx
->me_buffer_size
=
302 ALIGN(ENC_V100_HEVC_ME_SIZE(lcu_width
, lcu_height
), 16);
303 ctx
->scratch_buf_size
= ALIGN(ctx
->scratch_buf_size
, 256);
305 ctx
->scratch_buf_size
+ ctx
->tmv_buffer_size
+
306 (ctx
->pb_count
* (ctx
->luma_dpb_size
+
307 ctx
->chroma_dpb_size
+ ctx
->me_buffer_size
));
314 /* Allocate only if memory from bank 1 is necessary */
315 if (ctx
->bank1
.size
> 0) {
316 ret
= s5p_mfc_alloc_generic_buf(dev
, BANK_L_CTX
, &ctx
->bank1
);
318 mfc_err("Failed to allocate Bank1 memory\n");
321 BUG_ON(ctx
->bank1
.dma
& ((1 << MFC_BANK1_ALIGN_ORDER
) - 1));
326 /* Release buffers allocated for codec */
327 static void s5p_mfc_release_codec_buffers_v6(struct s5p_mfc_ctx
*ctx
)
329 s5p_mfc_release_generic_buf(ctx
->dev
, &ctx
->bank1
);
332 /* Allocate memory for instance data buffer */
333 static int s5p_mfc_alloc_instance_buffer_v6(struct s5p_mfc_ctx
*ctx
)
335 struct s5p_mfc_dev
*dev
= ctx
->dev
;
336 struct s5p_mfc_buf_size_v6
*buf_size
= dev
->variant
->buf_size
->priv
;
341 switch (ctx
->codec_mode
) {
342 case S5P_MFC_CODEC_H264_DEC
:
343 case S5P_MFC_CODEC_H264_MVC_DEC
:
344 case S5P_MFC_CODEC_HEVC_DEC
:
345 ctx
->ctx
.size
= buf_size
->h264_dec_ctx
;
347 case S5P_MFC_CODEC_MPEG4_DEC
:
348 case S5P_MFC_CODEC_H263_DEC
:
349 case S5P_MFC_CODEC_VC1RCV_DEC
:
350 case S5P_MFC_CODEC_VC1_DEC
:
351 case S5P_MFC_CODEC_MPEG2_DEC
:
352 case S5P_MFC_CODEC_VP8_DEC
:
353 case S5P_MFC_CODEC_VP9_DEC
:
354 ctx
->ctx
.size
= buf_size
->other_dec_ctx
;
356 case S5P_MFC_CODEC_H264_ENC
:
357 ctx
->ctx
.size
= buf_size
->h264_enc_ctx
;
359 case S5P_MFC_CODEC_HEVC_ENC
:
360 ctx
->ctx
.size
= buf_size
->hevc_enc_ctx
;
362 case S5P_MFC_CODEC_MPEG4_ENC
:
363 case S5P_MFC_CODEC_H263_ENC
:
364 case S5P_MFC_CODEC_VP8_ENC
:
365 ctx
->ctx
.size
= buf_size
->other_enc_ctx
;
369 mfc_err("Codec type(%d) should be checked!\n", ctx
->codec_mode
);
373 ret
= s5p_mfc_alloc_priv_buf(dev
, BANK_L_CTX
, &ctx
->ctx
);
375 mfc_err("Failed to allocate instance buffer\n");
379 memset(ctx
->ctx
.virt
, 0, ctx
->ctx
.size
);
387 /* Release instance buffer */
388 static void s5p_mfc_release_instance_buffer_v6(struct s5p_mfc_ctx
*ctx
)
390 s5p_mfc_release_priv_buf(ctx
->dev
, &ctx
->ctx
);
393 /* Allocate context buffers for SYS_INIT */
394 static int s5p_mfc_alloc_dev_context_buffer_v6(struct s5p_mfc_dev
*dev
)
396 struct s5p_mfc_buf_size_v6
*buf_size
= dev
->variant
->buf_size
->priv
;
401 dev
->ctx_buf
.size
= buf_size
->dev_ctx
;
402 ret
= s5p_mfc_alloc_priv_buf(dev
, BANK_L_CTX
, &dev
->ctx_buf
);
404 mfc_err("Failed to allocate device context buffer\n");
408 memset(dev
->ctx_buf
.virt
, 0, buf_size
->dev_ctx
);
416 /* Release context buffers for SYS_INIT */
417 static void s5p_mfc_release_dev_context_buffer_v6(struct s5p_mfc_dev
*dev
)
419 s5p_mfc_release_priv_buf(dev
, &dev
->ctx_buf
);
422 static int calc_plane(int width
, int height
)
426 mbX
= DIV_ROUND_UP(width
, S5P_FIMV_NUM_PIXELS_IN_MB_ROW_V6
);
427 mbY
= DIV_ROUND_UP(height
, S5P_FIMV_NUM_PIXELS_IN_MB_COL_V6
);
429 if (width
* height
< S5P_FIMV_MAX_FRAME_SIZE_V6
)
430 mbY
= (mbY
+ 1) / 2 * 2;
432 return (mbX
* S5P_FIMV_NUM_PIXELS_IN_MB_COL_V6
) *
433 (mbY
* S5P_FIMV_NUM_PIXELS_IN_MB_ROW_V6
);
436 static void s5p_mfc_dec_calc_dpb_size_v6(struct s5p_mfc_ctx
*ctx
)
438 struct s5p_mfc_dev
*dev
= ctx
->dev
;
439 ctx
->buf_width
= ALIGN(ctx
->img_width
, S5P_FIMV_NV12MT_HALIGN_V6
);
440 ctx
->buf_height
= ALIGN(ctx
->img_height
, S5P_FIMV_NV12MT_VALIGN_V6
);
441 mfc_debug(2, "SEQ Done: Movie dimensions %dx%d,\n"
442 "buffer dimensions: %dx%d\n", ctx
->img_width
,
443 ctx
->img_height
, ctx
->buf_width
, ctx
->buf_height
);
445 ctx
->luma_size
= calc_plane(ctx
->img_width
, ctx
->img_height
);
446 ctx
->chroma_size
= calc_plane(ctx
->img_width
, (ctx
->img_height
>> 1));
447 if (IS_MFCV8_PLUS(ctx
->dev
)) {
448 /* MFCv8 needs additional 64 bytes for luma,chroma dpb*/
449 ctx
->luma_size
+= S5P_FIMV_D_ALIGN_PLANE_SIZE_V8
;
450 ctx
->chroma_size
+= S5P_FIMV_D_ALIGN_PLANE_SIZE_V8
;
453 if (ctx
->codec_mode
== S5P_MFC_CODEC_H264_DEC
||
454 ctx
->codec_mode
== S5P_MFC_CODEC_H264_MVC_DEC
) {
455 if (IS_MFCV10(dev
)) {
456 ctx
->mv_size
= S5P_MFC_DEC_MV_SIZE_V10(ctx
->img_width
,
459 ctx
->mv_size
= S5P_MFC_DEC_MV_SIZE_V6(ctx
->img_width
,
462 } else if (ctx
->codec_mode
== S5P_MFC_CODEC_HEVC_DEC
) {
463 ctx
->mv_size
= s5p_mfc_dec_hevc_mv_size(ctx
->img_width
,
465 ctx
->mv_size
= ALIGN(ctx
->mv_size
, 32);
471 static void s5p_mfc_enc_calc_src_size_v6(struct s5p_mfc_ctx
*ctx
)
473 unsigned int mb_width
, mb_height
;
475 mb_width
= MB_WIDTH(ctx
->img_width
);
476 mb_height
= MB_HEIGHT(ctx
->img_height
);
478 ctx
->buf_width
= ALIGN(ctx
->img_width
, S5P_FIMV_NV12M_HALIGN_V6
);
479 ctx
->luma_size
= ALIGN((mb_width
* mb_height
) * 256, 256);
480 ctx
->chroma_size
= ALIGN((mb_width
* mb_height
) * 128, 256);
482 /* MFCv7 needs pad bytes for Luma and Chroma */
483 if (IS_MFCV7_PLUS(ctx
->dev
)) {
484 ctx
->luma_size
+= MFC_LUMA_PAD_BYTES_V7
;
485 ctx
->chroma_size
+= MFC_CHROMA_PAD_BYTES_V7
;
489 /* Set registers for decoding stream buffer */
490 static int s5p_mfc_set_dec_stream_buffer_v6(struct s5p_mfc_ctx
*ctx
,
491 int buf_addr
, unsigned int start_num_byte
,
492 unsigned int strm_size
)
494 struct s5p_mfc_dev
*dev
= ctx
->dev
;
495 const struct s5p_mfc_regs
*mfc_regs
= dev
->mfc_regs
;
496 struct s5p_mfc_buf_size
*buf_size
= dev
->variant
->buf_size
;
499 mfc_debug(2, "inst_no: %d, buf_addr: 0x%08x,\n"
500 "buf_size: 0x%08x (%d)\n",
501 ctx
->inst_no
, buf_addr
, strm_size
, strm_size
);
502 writel(strm_size
, mfc_regs
->d_stream_data_size
);
503 writel(buf_addr
, mfc_regs
->d_cpb_buffer_addr
);
504 writel(buf_size
->cpb
, mfc_regs
->d_cpb_buffer_size
);
505 writel(start_num_byte
, mfc_regs
->d_cpb_buffer_offset
);
511 /* Set decoding frame buffer */
512 static int s5p_mfc_set_dec_frame_buffer_v6(struct s5p_mfc_ctx
*ctx
)
514 unsigned int frame_size
, i
;
515 unsigned int frame_size_ch
, frame_size_mv
;
516 struct s5p_mfc_dev
*dev
= ctx
->dev
;
517 const struct s5p_mfc_regs
*mfc_regs
= dev
->mfc_regs
;
522 buf_addr1
= ctx
->bank1
.dma
;
523 buf_size1
= ctx
->bank1
.size
;
525 mfc_debug(2, "Buf1: %p (%d)\n", (void *)buf_addr1
, buf_size1
);
526 mfc_debug(2, "Total DPB COUNT: %d\n", ctx
->total_dpb_count
);
527 mfc_debug(2, "Setting display delay to %d\n", ctx
->display_delay
);
529 writel(ctx
->total_dpb_count
, mfc_regs
->d_num_dpb
);
530 writel(ctx
->luma_size
, mfc_regs
->d_first_plane_dpb_size
);
531 writel(ctx
->chroma_size
, mfc_regs
->d_second_plane_dpb_size
);
533 writel(buf_addr1
, mfc_regs
->d_scratch_buffer_addr
);
534 writel(ctx
->scratch_buf_size
, mfc_regs
->d_scratch_buffer_size
);
536 if (IS_MFCV8_PLUS(dev
)) {
537 writel(ctx
->img_width
,
538 mfc_regs
->d_first_plane_dpb_stride_size
);
539 writel(ctx
->img_width
,
540 mfc_regs
->d_second_plane_dpb_stride_size
);
543 buf_addr1
+= ctx
->scratch_buf_size
;
544 buf_size1
-= ctx
->scratch_buf_size
;
546 if (ctx
->codec_mode
== S5P_FIMV_CODEC_H264_DEC
||
547 ctx
->codec_mode
== S5P_FIMV_CODEC_H264_MVC_DEC
||
548 ctx
->codec_mode
== S5P_FIMV_CODEC_HEVC_DEC
) {
549 writel(ctx
->mv_size
, mfc_regs
->d_mv_buffer_size
);
550 writel(ctx
->mv_count
, mfc_regs
->d_num_mv
);
553 frame_size
= ctx
->luma_size
;
554 frame_size_ch
= ctx
->chroma_size
;
555 frame_size_mv
= ctx
->mv_size
;
556 mfc_debug(2, "Frame size: %d ch: %d mv: %d\n",
557 frame_size
, frame_size_ch
, frame_size_mv
);
559 for (i
= 0; i
< ctx
->total_dpb_count
; i
++) {
561 mfc_debug(2, "Luma %d: %zx\n", i
,
562 ctx
->dst_bufs
[i
].cookie
.raw
.luma
);
563 writel(ctx
->dst_bufs
[i
].cookie
.raw
.luma
,
564 mfc_regs
->d_first_plane_dpb
+ i
* 4);
565 mfc_debug(2, "\tChroma %d: %zx\n", i
,
566 ctx
->dst_bufs
[i
].cookie
.raw
.chroma
);
567 writel(ctx
->dst_bufs
[i
].cookie
.raw
.chroma
,
568 mfc_regs
->d_second_plane_dpb
+ i
* 4);
570 if (ctx
->codec_mode
== S5P_MFC_CODEC_H264_DEC
||
571 ctx
->codec_mode
== S5P_MFC_CODEC_H264_MVC_DEC
||
572 ctx
->codec_mode
== S5P_MFC_CODEC_HEVC_DEC
) {
573 for (i
= 0; i
< ctx
->mv_count
; i
++) {
574 /* To test alignment */
575 align_gap
= buf_addr1
;
576 buf_addr1
= ALIGN(buf_addr1
, 16);
577 align_gap
= buf_addr1
- align_gap
;
578 buf_size1
-= align_gap
;
580 mfc_debug(2, "\tBuf1: %zx, size: %d\n",
581 buf_addr1
, buf_size1
);
582 writel(buf_addr1
, mfc_regs
->d_mv_buffer
+ i
* 4);
583 buf_addr1
+= frame_size_mv
;
584 buf_size1
-= frame_size_mv
;
587 if (ctx
->codec_mode
== S5P_FIMV_CODEC_VP9_DEC
) {
588 writel(buf_addr1
, mfc_regs
->d_static_buffer_addr
);
589 writel(DEC_VP9_STATIC_BUFFER_SIZE
,
590 mfc_regs
->d_static_buffer_size
);
591 buf_addr1
+= DEC_VP9_STATIC_BUFFER_SIZE
;
592 buf_size1
-= DEC_VP9_STATIC_BUFFER_SIZE
;
595 mfc_debug(2, "Buf1: %zx, buf_size1: %d (frames %d)\n",
596 buf_addr1
, buf_size1
, ctx
->total_dpb_count
);
598 mfc_debug(2, "Not enough memory has been allocated.\n");
602 writel(ctx
->inst_no
, mfc_regs
->instance_id
);
603 s5p_mfc_hw_call(dev
->mfc_cmds
, cmd_host2risc
, dev
,
604 S5P_FIMV_CH_INIT_BUFS_V6
, NULL
);
606 mfc_debug(2, "After setting buffers.\n");
610 /* Set registers for encoding stream buffer */
611 static int s5p_mfc_set_enc_stream_buffer_v6(struct s5p_mfc_ctx
*ctx
,
612 unsigned long addr
, unsigned int size
)
614 struct s5p_mfc_dev
*dev
= ctx
->dev
;
615 const struct s5p_mfc_regs
*mfc_regs
= dev
->mfc_regs
;
617 writel(addr
, mfc_regs
->e_stream_buffer_addr
); /* 16B align */
618 writel(size
, mfc_regs
->e_stream_buffer_size
);
620 mfc_debug(2, "stream buf addr: 0x%08lx, size: 0x%x\n",
626 static void s5p_mfc_set_enc_frame_buffer_v6(struct s5p_mfc_ctx
*ctx
,
627 unsigned long y_addr
, unsigned long c_addr
)
629 struct s5p_mfc_dev
*dev
= ctx
->dev
;
630 const struct s5p_mfc_regs
*mfc_regs
= dev
->mfc_regs
;
632 writel(y_addr
, mfc_regs
->e_source_first_plane_addr
);
633 writel(c_addr
, mfc_regs
->e_source_second_plane_addr
);
635 mfc_debug(2, "enc src y buf addr: 0x%08lx\n", y_addr
);
636 mfc_debug(2, "enc src c buf addr: 0x%08lx\n", c_addr
);
639 static void s5p_mfc_get_enc_frame_buffer_v6(struct s5p_mfc_ctx
*ctx
,
640 unsigned long *y_addr
, unsigned long *c_addr
)
642 struct s5p_mfc_dev
*dev
= ctx
->dev
;
643 const struct s5p_mfc_regs
*mfc_regs
= dev
->mfc_regs
;
644 unsigned long enc_recon_y_addr
, enc_recon_c_addr
;
646 *y_addr
= readl(mfc_regs
->e_encoded_source_first_plane_addr
);
647 *c_addr
= readl(mfc_regs
->e_encoded_source_second_plane_addr
);
649 enc_recon_y_addr
= readl(mfc_regs
->e_recon_luma_dpb_addr
);
650 enc_recon_c_addr
= readl(mfc_regs
->e_recon_chroma_dpb_addr
);
652 mfc_debug(2, "recon y addr: 0x%08lx y_addr: 0x%08lx\n", enc_recon_y_addr
, *y_addr
);
653 mfc_debug(2, "recon c addr: 0x%08lx\n", enc_recon_c_addr
);
656 /* Set encoding ref & codec buffer */
657 static int s5p_mfc_set_enc_ref_buffer_v6(struct s5p_mfc_ctx
*ctx
)
659 struct s5p_mfc_dev
*dev
= ctx
->dev
;
660 const struct s5p_mfc_regs
*mfc_regs
= dev
->mfc_regs
;
666 buf_addr1
= ctx
->bank1
.dma
;
667 buf_size1
= ctx
->bank1
.size
;
669 mfc_debug(2, "Buf1: %p (%d)\n", (void *)buf_addr1
, buf_size1
);
671 if (IS_MFCV10(dev
)) {
672 /* start address of per buffer is aligned */
673 for (i
= 0; i
< ctx
->pb_count
; i
++) {
674 writel(buf_addr1
, mfc_regs
->e_luma_dpb
+ (4 * i
));
675 buf_addr1
+= ctx
->luma_dpb_size
;
676 buf_size1
-= ctx
->luma_dpb_size
;
678 for (i
= 0; i
< ctx
->pb_count
; i
++) {
679 writel(buf_addr1
, mfc_regs
->e_chroma_dpb
+ (4 * i
));
680 buf_addr1
+= ctx
->chroma_dpb_size
;
681 buf_size1
-= ctx
->chroma_dpb_size
;
683 for (i
= 0; i
< ctx
->pb_count
; i
++) {
684 writel(buf_addr1
, mfc_regs
->e_me_buffer
+ (4 * i
));
685 buf_addr1
+= ctx
->me_buffer_size
;
686 buf_size1
-= ctx
->me_buffer_size
;
689 for (i
= 0; i
< ctx
->pb_count
; i
++) {
690 writel(buf_addr1
, mfc_regs
->e_luma_dpb
+ (4 * i
));
691 buf_addr1
+= ctx
->luma_dpb_size
;
692 writel(buf_addr1
, mfc_regs
->e_chroma_dpb
+ (4 * i
));
693 buf_addr1
+= ctx
->chroma_dpb_size
;
694 writel(buf_addr1
, mfc_regs
->e_me_buffer
+ (4 * i
));
695 buf_addr1
+= ctx
->me_buffer_size
;
696 buf_size1
-= (ctx
->luma_dpb_size
+ ctx
->chroma_dpb_size
697 + ctx
->me_buffer_size
);
701 writel(buf_addr1
, mfc_regs
->e_scratch_buffer_addr
);
702 writel(ctx
->scratch_buf_size
, mfc_regs
->e_scratch_buffer_size
);
703 buf_addr1
+= ctx
->scratch_buf_size
;
704 buf_size1
-= ctx
->scratch_buf_size
;
706 writel(buf_addr1
, mfc_regs
->e_tmv_buffer0
);
707 buf_addr1
+= ctx
->tmv_buffer_size
>> 1;
708 writel(buf_addr1
, mfc_regs
->e_tmv_buffer1
);
709 buf_addr1
+= ctx
->tmv_buffer_size
>> 1;
710 buf_size1
-= ctx
->tmv_buffer_size
;
712 mfc_debug(2, "Buf1: %zu, buf_size1: %d (ref frames %d)\n",
713 buf_addr1
, buf_size1
, ctx
->pb_count
);
715 mfc_debug(2, "Not enough memory has been allocated.\n");
719 writel(ctx
->inst_no
, mfc_regs
->instance_id
);
720 s5p_mfc_hw_call(dev
->mfc_cmds
, cmd_host2risc
, dev
,
721 S5P_FIMV_CH_INIT_BUFS_V6
, NULL
);
728 static int s5p_mfc_set_slice_mode(struct s5p_mfc_ctx
*ctx
)
730 struct s5p_mfc_dev
*dev
= ctx
->dev
;
731 const struct s5p_mfc_regs
*mfc_regs
= dev
->mfc_regs
;
733 /* multi-slice control */
734 /* multi-slice MB number or bit size */
735 writel(ctx
->slice_mode
, mfc_regs
->e_mslice_mode
);
736 if (ctx
->slice_mode
== V4L2_MPEG_VIDEO_MULTI_SLICE_MODE_MAX_MB
) {
737 writel(ctx
->slice_size
.mb
, mfc_regs
->e_mslice_size_mb
);
738 } else if (ctx
->slice_mode
==
739 V4L2_MPEG_VIDEO_MULTI_SLICE_MODE_MAX_BYTES
) {
740 writel(ctx
->slice_size
.bits
, mfc_regs
->e_mslice_size_bits
);
742 writel(0x0, mfc_regs
->e_mslice_size_mb
);
743 writel(0x0, mfc_regs
->e_mslice_size_bits
);
749 static int s5p_mfc_set_enc_params(struct s5p_mfc_ctx
*ctx
)
751 struct s5p_mfc_dev
*dev
= ctx
->dev
;
752 const struct s5p_mfc_regs
*mfc_regs
= dev
->mfc_regs
;
753 struct s5p_mfc_enc_params
*p
= &ctx
->enc_params
;
754 unsigned int reg
= 0;
759 writel(ctx
->img_width
, mfc_regs
->e_frame_width
); /* 16 align */
761 writel(ctx
->img_height
, mfc_regs
->e_frame_height
); /* 16 align */
764 writel(ctx
->img_width
, mfc_regs
->e_cropped_frame_width
);
766 writel(ctx
->img_height
, mfc_regs
->e_cropped_frame_height
);
768 writel(0x0, mfc_regs
->e_frame_crop_offset
);
770 /* pictype : IDR period */
772 reg
|= p
->gop_size
& 0xFFFF;
773 writel(reg
, mfc_regs
->e_gop_config
);
775 /* multi-slice control */
776 /* multi-slice MB number or bit size */
777 ctx
->slice_mode
= p
->slice_mode
;
779 if (p
->slice_mode
== V4L2_MPEG_VIDEO_MULTI_SLICE_MODE_MAX_MB
) {
781 writel(reg
, mfc_regs
->e_enc_options
);
782 ctx
->slice_size
.mb
= p
->slice_mb
;
783 } else if (p
->slice_mode
== V4L2_MPEG_VIDEO_MULTI_SLICE_MODE_MAX_BYTES
) {
785 writel(reg
, mfc_regs
->e_enc_options
);
786 ctx
->slice_size
.bits
= p
->slice_bit
;
789 writel(reg
, mfc_regs
->e_enc_options
);
792 s5p_mfc_set_slice_mode(ctx
);
794 /* cyclic intra refresh */
795 writel(p
->intra_refresh_mb
, mfc_regs
->e_ir_size
);
796 reg
= readl(mfc_regs
->e_enc_options
);
797 if (p
->intra_refresh_mb
== 0)
801 writel(reg
, mfc_regs
->e_enc_options
);
803 /* 'NON_REFERENCE_STORE_ENABLE' for debugging */
804 reg
= readl(mfc_regs
->e_enc_options
);
806 writel(reg
, mfc_regs
->e_enc_options
);
808 /* memory structure cur. frame */
809 if (ctx
->src_fmt
->fourcc
== V4L2_PIX_FMT_NV12M
) {
810 /* 0: Linear, 1: 2D tiled*/
811 reg
= readl(mfc_regs
->e_enc_options
);
813 writel(reg
, mfc_regs
->e_enc_options
);
814 /* 0: NV12(CbCr), 1: NV21(CrCb) */
815 writel(0x0, mfc_regs
->pixel_format
);
816 } else if (ctx
->src_fmt
->fourcc
== V4L2_PIX_FMT_NV21M
) {
817 /* 0: Linear, 1: 2D tiled*/
818 reg
= readl(mfc_regs
->e_enc_options
);
820 writel(reg
, mfc_regs
->e_enc_options
);
821 /* 0: NV12(CbCr), 1: NV21(CrCb) */
822 writel(0x1, mfc_regs
->pixel_format
);
823 } else if (ctx
->src_fmt
->fourcc
== V4L2_PIX_FMT_NV12MT_16X16
) {
824 /* 0: Linear, 1: 2D tiled*/
825 reg
= readl(mfc_regs
->e_enc_options
);
827 writel(reg
, mfc_regs
->e_enc_options
);
828 /* 0: NV12(CbCr), 1: NV21(CrCb) */
829 writel(0x0, mfc_regs
->pixel_format
);
832 /* memory structure recon. frame */
833 /* 0: Linear, 1: 2D tiled */
834 reg
= readl(mfc_regs
->e_enc_options
);
836 writel(reg
, mfc_regs
->e_enc_options
);
838 /* padding control & value */
839 writel(0x0, mfc_regs
->e_padding_ctrl
);
845 reg
|= ((p
->pad_cr
& 0xFF) << 16);
847 reg
|= ((p
->pad_cb
& 0xFF) << 8);
849 reg
|= p
->pad_luma
& 0xFF;
850 writel(reg
, mfc_regs
->e_padding_ctrl
);
853 /* rate control config. */
855 /* frame-level rate control */
856 reg
|= ((p
->rc_frame
& 0x1) << 9);
857 writel(reg
, mfc_regs
->e_rc_config
);
861 writel(p
->rc_bitrate
,
862 mfc_regs
->e_rc_bit_rate
);
864 writel(1, mfc_regs
->e_rc_bit_rate
);
866 /* reaction coefficient */
868 if (p
->rc_reaction_coeff
< TIGHT_CBR_MAX
) /* tight CBR */
869 writel(1, mfc_regs
->e_rc_mode
);
871 writel(2, mfc_regs
->e_rc_mode
);
874 /* seq header ctrl */
875 reg
= readl(mfc_regs
->e_enc_options
);
877 reg
|= ((p
->seq_hdr_mode
& 0x1) << 2);
879 /* frame skip mode */
881 reg
|= (p
->frame_skip_mode
& 0x3);
882 writel(reg
, mfc_regs
->e_enc_options
);
884 /* 'DROP_CONTROL_ENABLE', disable */
885 reg
= readl(mfc_regs
->e_rc_config
);
887 writel(reg
, mfc_regs
->e_rc_config
);
889 /* setting for MV range [16, 256] */
890 reg
= (p
->mv_h_range
& S5P_FIMV_E_MV_RANGE_V6_MASK
);
891 writel(reg
, mfc_regs
->e_mv_hor_range
);
893 reg
= (p
->mv_v_range
& S5P_FIMV_E_MV_RANGE_V6_MASK
);
894 writel(reg
, mfc_regs
->e_mv_ver_range
);
896 writel(0x0, mfc_regs
->e_frame_insertion
);
897 writel(0x0, mfc_regs
->e_roi_buffer_addr
);
898 writel(0x0, mfc_regs
->e_param_change
);
899 writel(0x0, mfc_regs
->e_rc_roi_ctrl
);
900 writel(0x0, mfc_regs
->e_picture_tag
);
902 writel(0x0, mfc_regs
->e_bit_count_enable
);
903 writel(0x0, mfc_regs
->e_max_bit_count
);
904 writel(0x0, mfc_regs
->e_min_bit_count
);
906 writel(0x0, mfc_regs
->e_metadata_buffer_addr
);
907 writel(0x0, mfc_regs
->e_metadata_buffer_size
);
914 static int s5p_mfc_set_enc_params_h264(struct s5p_mfc_ctx
*ctx
)
916 struct s5p_mfc_dev
*dev
= ctx
->dev
;
917 const struct s5p_mfc_regs
*mfc_regs
= dev
->mfc_regs
;
918 struct s5p_mfc_enc_params
*p
= &ctx
->enc_params
;
919 struct s5p_mfc_h264_enc_params
*p_h264
= &p
->codec
.h264
;
920 unsigned int reg
= 0;
925 s5p_mfc_set_enc_params(ctx
);
927 /* pictype : number of B */
928 reg
= readl(mfc_regs
->e_gop_config
);
930 reg
|= ((p
->num_b_frame
& 0x3) << 16);
931 writel(reg
, mfc_regs
->e_gop_config
);
933 /* profile & level */
936 reg
|= ((p_h264
->level
& 0xFF) << 8);
937 /** profile - 0 ~ 3 */
938 reg
|= p_h264
->profile
& 0x3F;
939 writel(reg
, mfc_regs
->e_picture_profile
);
941 /* rate control config. */
942 reg
= readl(mfc_regs
->e_rc_config
);
943 /** macroblock level rate control */
945 reg
|= ((p
->rc_mb
& 0x1) << 8);
946 writel(reg
, mfc_regs
->e_rc_config
);
950 reg
|= p_h264
->rc_frame_qp
& 0x3F;
951 writel(reg
, mfc_regs
->e_rc_config
);
953 /* max & min value of QP */
956 reg
|= ((p_h264
->rc_max_qp
& 0x3F) << 8);
958 reg
|= p_h264
->rc_min_qp
& 0x3F;
959 writel(reg
, mfc_regs
->e_rc_qp_bound
);
962 writel(0x0, mfc_regs
->e_fixed_picture_qp
);
963 if (!p
->rc_frame
&& !p
->rc_mb
) {
965 reg
|= ((p_h264
->rc_b_frame_qp
& 0x3F) << 16);
966 reg
|= ((p_h264
->rc_p_frame_qp
& 0x3F) << 8);
967 reg
|= p_h264
->rc_frame_qp
& 0x3F;
968 writel(reg
, mfc_regs
->e_fixed_picture_qp
);
972 if (p
->rc_frame
&& p
->rc_framerate_num
&& p
->rc_framerate_denom
) {
974 reg
|= ((p
->rc_framerate_num
& 0xFFFF) << 16);
975 reg
|= p
->rc_framerate_denom
& 0xFFFF;
976 writel(reg
, mfc_regs
->e_rc_frame_rate
);
979 /* vbv buffer size */
980 if (p
->frame_skip_mode
==
981 V4L2_MPEG_MFC51_VIDEO_FRAME_SKIP_MODE_BUF_LIMIT
) {
982 writel(p_h264
->cpb_size
& 0xFFFF,
983 mfc_regs
->e_vbv_buffer_size
);
986 writel(p
->vbv_delay
, mfc_regs
->e_vbv_init_delay
);
991 reg
|= ((p_h264
->interlace
& 0x1) << 3);
992 writel(reg
, mfc_regs
->e_h264_options
);
995 if (p_h264
->interlace
) {
996 writel(ctx
->img_height
>> 1,
997 mfc_regs
->e_frame_height
); /* 32 align */
999 writel(ctx
->img_height
>> 1,
1000 mfc_regs
->e_cropped_frame_height
);
1003 /* loop filter ctrl */
1004 reg
= readl(mfc_regs
->e_h264_options
);
1006 reg
|= ((p_h264
->loop_filter_mode
& 0x3) << 1);
1007 writel(reg
, mfc_regs
->e_h264_options
);
1009 /* loopfilter alpha offset */
1010 if (p_h264
->loop_filter_alpha
< 0) {
1012 reg
|= (0xFF - p_h264
->loop_filter_alpha
) + 1;
1015 reg
|= (p_h264
->loop_filter_alpha
& 0xF);
1017 writel(reg
, mfc_regs
->e_h264_lf_alpha_offset
);
1019 /* loopfilter beta offset */
1020 if (p_h264
->loop_filter_beta
< 0) {
1022 reg
|= (0xFF - p_h264
->loop_filter_beta
) + 1;
1025 reg
|= (p_h264
->loop_filter_beta
& 0xF);
1027 writel(reg
, mfc_regs
->e_h264_lf_beta_offset
);
1029 /* entropy coding mode */
1030 reg
= readl(mfc_regs
->e_h264_options
);
1032 reg
|= p_h264
->entropy_mode
& 0x1;
1033 writel(reg
, mfc_regs
->e_h264_options
);
1035 /* number of ref. picture */
1036 reg
= readl(mfc_regs
->e_h264_options
);
1038 reg
|= (((p_h264
->num_ref_pic_4p
- 1) & 0x1) << 7);
1039 writel(reg
, mfc_regs
->e_h264_options
);
1041 /* 8x8 transform enable */
1042 reg
= readl(mfc_regs
->e_h264_options
);
1043 reg
&= ~(0x3 << 12);
1044 reg
|= ((p_h264
->_8x8_transform
& 0x3) << 12);
1045 writel(reg
, mfc_regs
->e_h264_options
);
1047 /* macroblock adaptive scaling features */
1048 writel(0x0, mfc_regs
->e_mb_rc_config
);
1052 reg
|= ((p_h264
->rc_mb_dark
& 0x1) << 3);
1053 /** smooth region */
1054 reg
|= ((p_h264
->rc_mb_smooth
& 0x1) << 2);
1055 /** static region */
1056 reg
|= ((p_h264
->rc_mb_static
& 0x1) << 1);
1057 /** high activity region */
1058 reg
|= p_h264
->rc_mb_activity
& 0x1;
1059 writel(reg
, mfc_regs
->e_mb_rc_config
);
1062 /* aspect ratio VUI */
1063 readl(mfc_regs
->e_h264_options
);
1065 reg
|= ((p_h264
->vui_sar
& 0x1) << 5);
1066 writel(reg
, mfc_regs
->e_h264_options
);
1068 writel(0x0, mfc_regs
->e_aspect_ratio
);
1069 writel(0x0, mfc_regs
->e_extended_sar
);
1070 if (p_h264
->vui_sar
) {
1071 /* aspect ration IDC */
1073 reg
|= p_h264
->vui_sar_idc
& 0xFF;
1074 writel(reg
, mfc_regs
->e_aspect_ratio
);
1075 if (p_h264
->vui_sar_idc
== 0xFF) {
1078 reg
|= (p_h264
->vui_ext_sar_width
& 0xFFFF) << 16;
1079 reg
|= p_h264
->vui_ext_sar_height
& 0xFFFF;
1080 writel(reg
, mfc_regs
->e_extended_sar
);
1084 /* intra picture period for H.264 open GOP */
1086 readl(mfc_regs
->e_h264_options
);
1088 reg
|= ((p_h264
->open_gop
& 0x1) << 4);
1089 writel(reg
, mfc_regs
->e_h264_options
);
1092 writel(0x0, mfc_regs
->e_h264_i_period
);
1093 if (p_h264
->open_gop
) {
1095 reg
|= p_h264
->open_gop_size
& 0xFFFF;
1096 writel(reg
, mfc_regs
->e_h264_i_period
);
1099 /* 'WEIGHTED_BI_PREDICTION' for B is disable */
1100 readl(mfc_regs
->e_h264_options
);
1102 writel(reg
, mfc_regs
->e_h264_options
);
1104 /* 'CONSTRAINED_INTRA_PRED_ENABLE' is disable */
1105 readl(mfc_regs
->e_h264_options
);
1106 reg
&= ~(0x1 << 14);
1107 writel(reg
, mfc_regs
->e_h264_options
);
1110 readl(mfc_regs
->e_h264_options
);
1112 reg
|= ((p_h264
->aso
& 0x1) << 6);
1113 writel(reg
, mfc_regs
->e_h264_options
);
1115 /* hier qp enable */
1116 readl(mfc_regs
->e_h264_options
);
1118 reg
|= ((p_h264
->open_gop
& 0x1) << 8);
1119 writel(reg
, mfc_regs
->e_h264_options
);
1121 if (p_h264
->hier_qp
&& p_h264
->hier_qp_layer
) {
1122 reg
|= (p_h264
->hier_qp_type
& 0x1) << 0x3;
1123 reg
|= p_h264
->hier_qp_layer
& 0x7;
1124 writel(reg
, mfc_regs
->e_h264_num_t_layer
);
1125 /* QP value for each layer */
1126 for (i
= 0; i
< p_h264
->hier_qp_layer
&&
1127 i
< ARRAY_SIZE(p_h264
->hier_qp_layer_qp
); i
++) {
1128 writel(p_h264
->hier_qp_layer_qp
[i
],
1129 mfc_regs
->e_h264_hierarchical_qp_layer0
1133 /* number of coding layer should be zero when hierarchical is disable */
1134 writel(reg
, mfc_regs
->e_h264_num_t_layer
);
1136 /* frame packing SEI generation */
1137 readl(mfc_regs
->e_h264_options
);
1138 reg
&= ~(0x1 << 25);
1139 reg
|= ((p_h264
->sei_frame_packing
& 0x1) << 25);
1140 writel(reg
, mfc_regs
->e_h264_options
);
1141 if (p_h264
->sei_frame_packing
) {
1143 /** current frame0 flag */
1144 reg
|= ((p_h264
->sei_fp_curr_frame_0
& 0x1) << 2);
1145 /** arrangement type */
1146 reg
|= p_h264
->sei_fp_arrangement_type
& 0x3;
1147 writel(reg
, mfc_regs
->e_h264_frame_packing_sei_info
);
1151 switch (p_h264
->fmo_map_type
) {
1152 case V4L2_MPEG_VIDEO_H264_FMO_MAP_TYPE_INTERLEAVED_SLICES
:
1153 if (p_h264
->fmo_slice_grp
> 4)
1154 p_h264
->fmo_slice_grp
= 4;
1155 for (i
= 0; i
< (p_h264
->fmo_slice_grp
& 0xF); i
++)
1156 writel(p_h264
->fmo_run_len
[i
] - 1,
1157 mfc_regs
->e_h264_fmo_run_length_minus1_0
1160 case V4L2_MPEG_VIDEO_H264_FMO_MAP_TYPE_SCATTERED_SLICES
:
1161 if (p_h264
->fmo_slice_grp
> 4)
1162 p_h264
->fmo_slice_grp
= 4;
1164 case V4L2_MPEG_VIDEO_H264_FMO_MAP_TYPE_RASTER_SCAN
:
1165 case V4L2_MPEG_VIDEO_H264_FMO_MAP_TYPE_WIPE_SCAN
:
1166 if (p_h264
->fmo_slice_grp
> 2)
1167 p_h264
->fmo_slice_grp
= 2;
1168 writel(p_h264
->fmo_chg_dir
& 0x1,
1169 mfc_regs
->e_h264_fmo_slice_grp_change_dir
);
1170 /* the valid range is 0 ~ number of macroblocks -1 */
1171 writel(p_h264
->fmo_chg_rate
,
1172 mfc_regs
->e_h264_fmo_slice_grp_change_rate_minus1
);
1175 mfc_err("Unsupported map type for FMO: %d\n",
1176 p_h264
->fmo_map_type
);
1177 p_h264
->fmo_map_type
= 0;
1178 p_h264
->fmo_slice_grp
= 1;
1182 writel(p_h264
->fmo_map_type
,
1183 mfc_regs
->e_h264_fmo_slice_grp_map_type
);
1184 writel(p_h264
->fmo_slice_grp
- 1,
1185 mfc_regs
->e_h264_fmo_num_slice_grp_minus1
);
1187 writel(0, mfc_regs
->e_h264_fmo_num_slice_grp_minus1
);
1195 static int s5p_mfc_set_enc_params_mpeg4(struct s5p_mfc_ctx
*ctx
)
1197 struct s5p_mfc_dev
*dev
= ctx
->dev
;
1198 const struct s5p_mfc_regs
*mfc_regs
= dev
->mfc_regs
;
1199 struct s5p_mfc_enc_params
*p
= &ctx
->enc_params
;
1200 struct s5p_mfc_mpeg4_enc_params
*p_mpeg4
= &p
->codec
.mpeg4
;
1201 unsigned int reg
= 0;
1205 s5p_mfc_set_enc_params(ctx
);
1207 /* pictype : number of B */
1208 reg
= readl(mfc_regs
->e_gop_config
);
1209 reg
&= ~(0x3 << 16);
1210 reg
|= ((p
->num_b_frame
& 0x3) << 16);
1211 writel(reg
, mfc_regs
->e_gop_config
);
1213 /* profile & level */
1216 reg
|= ((p_mpeg4
->level
& 0xFF) << 8);
1217 /** profile - 0 ~ 1 */
1218 reg
|= p_mpeg4
->profile
& 0x3F;
1219 writel(reg
, mfc_regs
->e_picture_profile
);
1221 /* rate control config. */
1222 reg
= readl(mfc_regs
->e_rc_config
);
1223 /** macroblock level rate control */
1225 reg
|= ((p
->rc_mb
& 0x1) << 8);
1226 writel(reg
, mfc_regs
->e_rc_config
);
1230 reg
|= p_mpeg4
->rc_frame_qp
& 0x3F;
1231 writel(reg
, mfc_regs
->e_rc_config
);
1233 /* max & min value of QP */
1236 reg
|= ((p_mpeg4
->rc_max_qp
& 0x3F) << 8);
1238 reg
|= p_mpeg4
->rc_min_qp
& 0x3F;
1239 writel(reg
, mfc_regs
->e_rc_qp_bound
);
1242 writel(0x0, mfc_regs
->e_fixed_picture_qp
);
1243 if (!p
->rc_frame
&& !p
->rc_mb
) {
1245 reg
|= ((p_mpeg4
->rc_b_frame_qp
& 0x3F) << 16);
1246 reg
|= ((p_mpeg4
->rc_p_frame_qp
& 0x3F) << 8);
1247 reg
|= p_mpeg4
->rc_frame_qp
& 0x3F;
1248 writel(reg
, mfc_regs
->e_fixed_picture_qp
);
1252 if (p
->rc_frame
&& p
->rc_framerate_num
&& p
->rc_framerate_denom
) {
1254 reg
|= ((p
->rc_framerate_num
& 0xFFFF) << 16);
1255 reg
|= p
->rc_framerate_denom
& 0xFFFF;
1256 writel(reg
, mfc_regs
->e_rc_frame_rate
);
1259 /* vbv buffer size */
1260 if (p
->frame_skip_mode
==
1261 V4L2_MPEG_MFC51_VIDEO_FRAME_SKIP_MODE_BUF_LIMIT
) {
1262 writel(p
->vbv_size
& 0xFFFF, mfc_regs
->e_vbv_buffer_size
);
1265 writel(p
->vbv_delay
, mfc_regs
->e_vbv_init_delay
);
1269 writel(0x0, mfc_regs
->e_mpeg4_options
);
1270 writel(0x0, mfc_regs
->e_mpeg4_hec_period
);
1277 static int s5p_mfc_set_enc_params_h263(struct s5p_mfc_ctx
*ctx
)
1279 struct s5p_mfc_dev
*dev
= ctx
->dev
;
1280 const struct s5p_mfc_regs
*mfc_regs
= dev
->mfc_regs
;
1281 struct s5p_mfc_enc_params
*p
= &ctx
->enc_params
;
1282 struct s5p_mfc_mpeg4_enc_params
*p_h263
= &p
->codec
.mpeg4
;
1283 unsigned int reg
= 0;
1287 s5p_mfc_set_enc_params(ctx
);
1289 /* profile & level */
1293 writel(reg
, mfc_regs
->e_picture_profile
);
1295 /* rate control config. */
1296 reg
= readl(mfc_regs
->e_rc_config
);
1297 /** macroblock level rate control */
1299 reg
|= ((p
->rc_mb
& 0x1) << 8);
1300 writel(reg
, mfc_regs
->e_rc_config
);
1304 reg
|= p_h263
->rc_frame_qp
& 0x3F;
1305 writel(reg
, mfc_regs
->e_rc_config
);
1307 /* max & min value of QP */
1310 reg
|= ((p_h263
->rc_max_qp
& 0x3F) << 8);
1312 reg
|= p_h263
->rc_min_qp
& 0x3F;
1313 writel(reg
, mfc_regs
->e_rc_qp_bound
);
1316 writel(0x0, mfc_regs
->e_fixed_picture_qp
);
1317 if (!p
->rc_frame
&& !p
->rc_mb
) {
1319 reg
|= ((p_h263
->rc_b_frame_qp
& 0x3F) << 16);
1320 reg
|= ((p_h263
->rc_p_frame_qp
& 0x3F) << 8);
1321 reg
|= p_h263
->rc_frame_qp
& 0x3F;
1322 writel(reg
, mfc_regs
->e_fixed_picture_qp
);
1326 if (p
->rc_frame
&& p
->rc_framerate_num
&& p
->rc_framerate_denom
) {
1328 reg
|= ((p
->rc_framerate_num
& 0xFFFF) << 16);
1329 reg
|= p
->rc_framerate_denom
& 0xFFFF;
1330 writel(reg
, mfc_regs
->e_rc_frame_rate
);
1333 /* vbv buffer size */
1334 if (p
->frame_skip_mode
==
1335 V4L2_MPEG_MFC51_VIDEO_FRAME_SKIP_MODE_BUF_LIMIT
) {
1336 writel(p
->vbv_size
& 0xFFFF, mfc_regs
->e_vbv_buffer_size
);
1339 writel(p
->vbv_delay
, mfc_regs
->e_vbv_init_delay
);
1347 static int s5p_mfc_set_enc_params_vp8(struct s5p_mfc_ctx
*ctx
)
1349 struct s5p_mfc_dev
*dev
= ctx
->dev
;
1350 const struct s5p_mfc_regs
*mfc_regs
= dev
->mfc_regs
;
1351 struct s5p_mfc_enc_params
*p
= &ctx
->enc_params
;
1352 struct s5p_mfc_vp8_enc_params
*p_vp8
= &p
->codec
.vp8
;
1353 unsigned int reg
= 0;
1354 unsigned int val
= 0;
1358 s5p_mfc_set_enc_params(ctx
);
1360 /* pictype : number of B */
1361 reg
= readl(mfc_regs
->e_gop_config
);
1362 reg
&= ~(0x3 << 16);
1363 reg
|= ((p
->num_b_frame
& 0x3) << 16);
1364 writel(reg
, mfc_regs
->e_gop_config
);
1366 /* profile - 0 ~ 3 */
1367 reg
= p_vp8
->profile
& 0x3;
1368 writel(reg
, mfc_regs
->e_picture_profile
);
1370 /* rate control config. */
1371 reg
= readl(mfc_regs
->e_rc_config
);
1372 /** macroblock level rate control */
1374 reg
|= ((p
->rc_mb
& 0x1) << 8);
1375 writel(reg
, mfc_regs
->e_rc_config
);
1378 if (p
->rc_frame
&& p
->rc_framerate_num
&& p
->rc_framerate_denom
) {
1380 reg
|= ((p
->rc_framerate_num
& 0xFFFF) << 16);
1381 reg
|= p
->rc_framerate_denom
& 0xFFFF;
1382 writel(reg
, mfc_regs
->e_rc_frame_rate
);
1387 reg
|= p_vp8
->rc_frame_qp
& 0x7F;
1388 writel(reg
, mfc_regs
->e_rc_config
);
1391 writel(0x0, mfc_regs
->e_fixed_picture_qp
);
1392 if (!p
->rc_frame
&& !p
->rc_mb
) {
1394 reg
|= ((p_vp8
->rc_p_frame_qp
& 0x7F) << 8);
1395 reg
|= p_vp8
->rc_frame_qp
& 0x7F;
1396 writel(reg
, mfc_regs
->e_fixed_picture_qp
);
1400 reg
= ((p_vp8
->rc_max_qp
& 0x7F) << 8);
1402 reg
|= p_vp8
->rc_min_qp
& 0x7F;
1403 writel(reg
, mfc_regs
->e_rc_qp_bound
);
1405 /* vbv buffer size */
1406 if (p
->frame_skip_mode
==
1407 V4L2_MPEG_MFC51_VIDEO_FRAME_SKIP_MODE_BUF_LIMIT
) {
1408 writel(p
->vbv_size
& 0xFFFF, mfc_regs
->e_vbv_buffer_size
);
1411 writel(p
->vbv_delay
, mfc_regs
->e_vbv_init_delay
);
1414 /* VP8 specific params */
1416 reg
|= (p_vp8
->imd_4x4
& 0x1) << 10;
1417 switch (p_vp8
->num_partitions
) {
1418 case V4L2_CID_MPEG_VIDEO_VPX_1_PARTITION
:
1421 case V4L2_CID_MPEG_VIDEO_VPX_2_PARTITIONS
:
1424 case V4L2_CID_MPEG_VIDEO_VPX_4_PARTITIONS
:
1427 case V4L2_CID_MPEG_VIDEO_VPX_8_PARTITIONS
:
1431 reg
|= (val
& 0xF) << 3;
1432 reg
|= (p_vp8
->num_ref
& 0x2);
1433 writel(reg
, mfc_regs
->e_vp8_options
);
1440 static int s5p_mfc_set_enc_params_hevc(struct s5p_mfc_ctx
*ctx
)
1442 struct s5p_mfc_dev
*dev
= ctx
->dev
;
1443 const struct s5p_mfc_regs
*mfc_regs
= dev
->mfc_regs
;
1444 struct s5p_mfc_enc_params
*p
= &ctx
->enc_params
;
1445 struct s5p_mfc_hevc_enc_params
*p_hevc
= &p
->codec
.hevc
;
1446 unsigned int reg
= 0;
1451 s5p_mfc_set_enc_params(ctx
);
1453 /* pictype : number of B */
1454 reg
= readl(mfc_regs
->e_gop_config
);
1455 /* num_b_frame - 0 ~ 2 */
1456 reg
&= ~(0x3 << 16);
1457 reg
|= (p
->num_b_frame
<< 16);
1458 writel(reg
, mfc_regs
->e_gop_config
);
1460 /* UHD encoding case */
1461 if ((ctx
->img_width
== 3840) && (ctx
->img_height
== 2160)) {
1464 /* this tier can be changed */
1470 reg
|= p_hevc
->profile
& 0x3;
1472 reg
&= ~(0xFF << 8);
1473 reg
|= (p_hevc
->level
<< 8);
1475 reg
|= (p_hevc
->tier
<< 16);
1476 writel(reg
, mfc_regs
->e_picture_profile
);
1478 switch (p_hevc
->loopfilter
) {
1479 case V4L2_MPEG_VIDEO_HEVC_LOOP_FILTER_MODE_DISABLED
:
1480 p_hevc
->loopfilter_disable
= 1;
1482 case V4L2_MPEG_VIDEO_HEVC_LOOP_FILTER_MODE_ENABLED
:
1483 p_hevc
->loopfilter_disable
= 0;
1484 p_hevc
->loopfilter_across
= 1;
1486 case V4L2_MPEG_VIDEO_HEVC_LOOP_FILTER_MODE_DISABLED_AT_SLICE_BOUNDARY
:
1487 p_hevc
->loopfilter_disable
= 0;
1488 p_hevc
->loopfilter_across
= 0;
1492 /* max partition depth */
1494 reg
|= (p_hevc
->max_partition_depth
& 0x1);
1495 reg
|= (p_hevc
->num_refs_for_p
-1) << 2;
1496 reg
|= (p_hevc
->refreshtype
& 0x3) << 3;
1497 reg
|= (p_hevc
->const_intra_period_enable
& 0x1) << 5;
1498 reg
|= (p_hevc
->lossless_cu_enable
& 0x1) << 6;
1499 reg
|= (p_hevc
->wavefront_enable
& 0x1) << 7;
1500 reg
|= (p_hevc
->loopfilter_disable
& 0x1) << 8;
1501 reg
|= (p_hevc
->loopfilter_across
& 0x1) << 9;
1502 reg
|= (p_hevc
->enable_ltr
& 0x1) << 10;
1503 reg
|= (p_hevc
->hier_qp_enable
& 0x1) << 11;
1504 reg
|= (p_hevc
->general_pb_enable
& 0x1) << 13;
1505 reg
|= (p_hevc
->temporal_id_enable
& 0x1) << 14;
1506 reg
|= (p_hevc
->strong_intra_smooth
& 0x1) << 15;
1507 reg
|= (p_hevc
->intra_pu_split_disable
& 0x1) << 16;
1508 reg
|= (p_hevc
->tmv_prediction_disable
& 0x1) << 17;
1509 reg
|= (p_hevc
->max_num_merge_mv
& 0x7) << 18;
1510 reg
|= (p_hevc
->encoding_nostartcode_enable
& 0x1) << 23;
1511 reg
|= (p_hevc
->prepend_sps_pps_to_idr
<< 26);
1513 writel(reg
, mfc_regs
->e_hevc_options
);
1514 /* refresh period */
1515 if (p_hevc
->refreshtype
) {
1517 reg
|= (p_hevc
->refreshperiod
& 0xFFFF);
1518 writel(reg
, mfc_regs
->e_hevc_refresh_period
);
1520 /* loop filter setting */
1521 if (!(p_hevc
->loopfilter_disable
& 0x1)) {
1523 reg
|= (p_hevc
->lf_beta_offset_div2
);
1524 writel(reg
, mfc_regs
->e_hevc_lf_beta_offset_div2
);
1526 reg
|= (p_hevc
->lf_tc_offset_div2
);
1527 writel(reg
, mfc_regs
->e_hevc_lf_tc_offset_div2
);
1529 /* hier qp enable */
1530 if (p_hevc
->num_hier_layer
) {
1532 reg
|= (p_hevc
->hier_qp_type
& 0x1) << 0x3;
1533 reg
|= p_hevc
->num_hier_layer
& 0x7;
1534 writel(reg
, mfc_regs
->e_num_t_layer
);
1535 /* QP value for each layer */
1536 if (p_hevc
->hier_qp_enable
) {
1537 for (i
= 0; i
< 7; i
++)
1538 writel(p_hevc
->hier_qp_layer
[i
],
1539 mfc_regs
->e_hier_qp_layer0
+ i
* 4);
1542 for (i
= 0; i
< 7; i
++)
1543 writel(p_hevc
->hier_bit_layer
[i
],
1544 mfc_regs
->e_hier_bit_rate_layer0
1549 /* rate control config. */
1550 reg
= readl(mfc_regs
->e_rc_config
);
1551 /* macroblock level rate control */
1553 reg
|= (p
->rc_mb
<< 8);
1554 writel(reg
, mfc_regs
->e_rc_config
);
1557 reg
|= p_hevc
->rc_frame_qp
;
1558 writel(reg
, mfc_regs
->e_rc_config
);
1563 reg
&= ~(0xFFFF << 16);
1564 reg
|= ((p_hevc
->rc_framerate
) << 16);
1566 reg
|= FRAME_DELTA_DEFAULT
;
1567 writel(reg
, mfc_regs
->e_rc_frame_rate
);
1570 /* max & min value of QP */
1573 reg
&= ~(0xFF << 8);
1574 reg
|= (p_hevc
->rc_max_qp
<< 8);
1577 reg
|= p_hevc
->rc_min_qp
;
1578 writel(reg
, mfc_regs
->e_rc_qp_bound
);
1580 writel(0x0, mfc_regs
->e_fixed_picture_qp
);
1581 if (!p
->rc_frame
&& !p
->rc_mb
) {
1583 reg
&= ~(0xFF << 16);
1584 reg
|= (p_hevc
->rc_b_frame_qp
<< 16);
1585 reg
&= ~(0xFF << 8);
1586 reg
|= (p_hevc
->rc_p_frame_qp
<< 8);
1588 reg
|= p_hevc
->rc_frame_qp
;
1589 writel(reg
, mfc_regs
->e_fixed_picture_qp
);
1596 /* Initialize decoding */
1597 static int s5p_mfc_init_decode_v6(struct s5p_mfc_ctx
*ctx
)
1599 struct s5p_mfc_dev
*dev
= ctx
->dev
;
1600 const struct s5p_mfc_regs
*mfc_regs
= dev
->mfc_regs
;
1601 unsigned int reg
= 0;
1602 int fmo_aso_ctrl
= 0;
1605 mfc_debug(2, "InstNo: %d/%d\n", ctx
->inst_no
,
1606 S5P_FIMV_CH_SEQ_HEADER_V6
);
1607 mfc_debug(2, "BUFs: %08x %08x %08x\n",
1608 readl(mfc_regs
->d_cpb_buffer_addr
),
1609 readl(mfc_regs
->d_cpb_buffer_addr
),
1610 readl(mfc_regs
->d_cpb_buffer_addr
));
1612 /* FMO_ASO_CTRL - 0: Enable, 1: Disable */
1613 reg
|= (fmo_aso_ctrl
<< S5P_FIMV_D_OPT_FMO_ASO_CTRL_MASK_V6
);
1615 if (ctx
->display_delay_enable
) {
1616 reg
|= (0x1 << S5P_FIMV_D_OPT_DDELAY_EN_SHIFT_V6
);
1617 writel(ctx
->display_delay
, mfc_regs
->d_display_delay
);
1620 if (IS_MFCV7_PLUS(dev
) || IS_MFCV6_V2(dev
)) {
1621 writel(reg
, mfc_regs
->d_dec_options
);
1625 /* Setup loop filter, for decoding this is only valid for MPEG4 */
1626 if (ctx
->codec_mode
== S5P_MFC_CODEC_MPEG4_DEC
) {
1627 mfc_debug(2, "Set loop filter to: %d\n",
1628 ctx
->loop_filter_mpeg4
);
1629 reg
|= (ctx
->loop_filter_mpeg4
<<
1630 S5P_FIMV_D_OPT_LF_CTRL_SHIFT_V6
);
1632 if (ctx
->dst_fmt
->fourcc
== V4L2_PIX_FMT_NV12MT_16X16
)
1633 reg
|= (0x1 << S5P_FIMV_D_OPT_TILE_MODE_SHIFT_V6
);
1635 if (IS_MFCV7_PLUS(dev
) || IS_MFCV6_V2(dev
))
1636 writel(reg
, mfc_regs
->d_init_buffer_options
);
1638 writel(reg
, mfc_regs
->d_dec_options
);
1640 /* 0: NV12(CbCr), 1: NV21(CrCb) */
1641 if (ctx
->dst_fmt
->fourcc
== V4L2_PIX_FMT_NV21M
)
1642 writel(0x1, mfc_regs
->pixel_format
);
1644 writel(0x0, mfc_regs
->pixel_format
);
1648 writel(ctx
->sei_fp_parse
& 0x1, mfc_regs
->d_sei_enable
);
1650 writel(ctx
->inst_no
, mfc_regs
->instance_id
);
1651 s5p_mfc_hw_call(dev
->mfc_cmds
, cmd_host2risc
, dev
,
1652 S5P_FIMV_CH_SEQ_HEADER_V6
, NULL
);
1658 static inline void s5p_mfc_set_flush(struct s5p_mfc_ctx
*ctx
, int flush
)
1660 struct s5p_mfc_dev
*dev
= ctx
->dev
;
1661 const struct s5p_mfc_regs
*mfc_regs
= dev
->mfc_regs
;
1664 dev
->curr_ctx
= ctx
->num
;
1665 writel(ctx
->inst_no
, mfc_regs
->instance_id
);
1666 s5p_mfc_hw_call(dev
->mfc_cmds
, cmd_host2risc
, dev
,
1667 S5P_FIMV_H2R_CMD_FLUSH_V6
, NULL
);
1671 /* Decode a single frame */
1672 static int s5p_mfc_decode_one_frame_v6(struct s5p_mfc_ctx
*ctx
,
1673 enum s5p_mfc_decode_arg last_frame
)
1675 struct s5p_mfc_dev
*dev
= ctx
->dev
;
1676 const struct s5p_mfc_regs
*mfc_regs
= dev
->mfc_regs
;
1678 writel(ctx
->dec_dst_flag
, mfc_regs
->d_available_dpb_flag_lower
);
1679 writel(ctx
->slice_interface
& 0x1, mfc_regs
->d_slice_if_enable
);
1681 writel(ctx
->inst_no
, mfc_regs
->instance_id
);
1682 /* Issue different commands to instance basing on whether it
1683 * is the last frame or not. */
1684 switch (last_frame
) {
1686 s5p_mfc_hw_call(dev
->mfc_cmds
, cmd_host2risc
, dev
,
1687 S5P_FIMV_CH_FRAME_START_V6
, NULL
);
1690 s5p_mfc_hw_call(dev
->mfc_cmds
, cmd_host2risc
, dev
,
1691 S5P_FIMV_CH_LAST_FRAME_V6
, NULL
);
1694 mfc_err("Unsupported last frame arg.\n");
1698 mfc_debug(2, "Decoding a usual frame.\n");
1702 static int s5p_mfc_init_encode_v6(struct s5p_mfc_ctx
*ctx
)
1704 struct s5p_mfc_dev
*dev
= ctx
->dev
;
1705 const struct s5p_mfc_regs
*mfc_regs
= dev
->mfc_regs
;
1707 if (ctx
->codec_mode
== S5P_MFC_CODEC_H264_ENC
)
1708 s5p_mfc_set_enc_params_h264(ctx
);
1709 else if (ctx
->codec_mode
== S5P_MFC_CODEC_MPEG4_ENC
)
1710 s5p_mfc_set_enc_params_mpeg4(ctx
);
1711 else if (ctx
->codec_mode
== S5P_MFC_CODEC_H263_ENC
)
1712 s5p_mfc_set_enc_params_h263(ctx
);
1713 else if (ctx
->codec_mode
== S5P_MFC_CODEC_VP8_ENC
)
1714 s5p_mfc_set_enc_params_vp8(ctx
);
1715 else if (ctx
->codec_mode
== S5P_FIMV_CODEC_HEVC_ENC
)
1716 s5p_mfc_set_enc_params_hevc(ctx
);
1718 mfc_err("Unknown codec for encoding (%x).\n",
1723 /* Set stride lengths for v7 & above */
1724 if (IS_MFCV7_PLUS(dev
)) {
1725 writel(ctx
->img_width
, mfc_regs
->e_source_first_plane_stride
);
1726 writel(ctx
->img_width
, mfc_regs
->e_source_second_plane_stride
);
1729 writel(ctx
->inst_no
, mfc_regs
->instance_id
);
1730 s5p_mfc_hw_call(dev
->mfc_cmds
, cmd_host2risc
, dev
,
1731 S5P_FIMV_CH_SEQ_HEADER_V6
, NULL
);
1736 static int s5p_mfc_h264_set_aso_slice_order_v6(struct s5p_mfc_ctx
*ctx
)
1738 struct s5p_mfc_dev
*dev
= ctx
->dev
;
1739 const struct s5p_mfc_regs
*mfc_regs
= dev
->mfc_regs
;
1740 struct s5p_mfc_enc_params
*p
= &ctx
->enc_params
;
1741 struct s5p_mfc_h264_enc_params
*p_h264
= &p
->codec
.h264
;
1745 for (i
= 0; i
< ARRAY_SIZE(p_h264
->aso_slice_order
); i
++) {
1746 writel(p_h264
->aso_slice_order
[i
],
1747 mfc_regs
->e_h264_aso_slice_order_0
+ i
* 4);
1753 /* Encode a single frame */
1754 static int s5p_mfc_encode_one_frame_v6(struct s5p_mfc_ctx
*ctx
)
1756 struct s5p_mfc_dev
*dev
= ctx
->dev
;
1757 const struct s5p_mfc_regs
*mfc_regs
= dev
->mfc_regs
;
1760 mfc_debug(2, "++\n");
1762 /* memory structure cur. frame */
1764 if (ctx
->codec_mode
== S5P_MFC_CODEC_H264_ENC
)
1765 s5p_mfc_h264_set_aso_slice_order_v6(ctx
);
1767 s5p_mfc_set_slice_mode(ctx
);
1769 if (ctx
->state
!= MFCINST_FINISHING
)
1770 cmd
= S5P_FIMV_CH_FRAME_START_V6
;
1772 cmd
= S5P_FIMV_CH_LAST_FRAME_V6
;
1774 writel(ctx
->inst_no
, mfc_regs
->instance_id
);
1775 s5p_mfc_hw_call(dev
->mfc_cmds
, cmd_host2risc
, dev
, cmd
, NULL
);
1777 mfc_debug(2, "--\n");
1782 static inline void s5p_mfc_run_dec_last_frames(struct s5p_mfc_ctx
*ctx
)
1784 struct s5p_mfc_dev
*dev
= ctx
->dev
;
1786 s5p_mfc_set_dec_stream_buffer_v6(ctx
, 0, 0, 0);
1787 dev
->curr_ctx
= ctx
->num
;
1788 s5p_mfc_decode_one_frame_v6(ctx
, MFC_DEC_LAST_FRAME
);
1791 static inline int s5p_mfc_run_dec_frame(struct s5p_mfc_ctx
*ctx
)
1793 struct s5p_mfc_dev
*dev
= ctx
->dev
;
1794 struct s5p_mfc_buf
*temp_vb
;
1797 if (ctx
->state
== MFCINST_FINISHING
) {
1798 last_frame
= MFC_DEC_LAST_FRAME
;
1799 s5p_mfc_set_dec_stream_buffer_v6(ctx
, 0, 0, 0);
1800 dev
->curr_ctx
= ctx
->num
;
1801 s5p_mfc_clean_ctx_int_flags(ctx
);
1802 s5p_mfc_decode_one_frame_v6(ctx
, last_frame
);
1806 /* Frames are being decoded */
1807 if (list_empty(&ctx
->src_queue
)) {
1808 mfc_debug(2, "No src buffers.\n");
1811 /* Get the next source buffer */
1812 temp_vb
= list_entry(ctx
->src_queue
.next
, struct s5p_mfc_buf
, list
);
1813 temp_vb
->flags
|= MFC_BUF_FLAG_USED
;
1814 s5p_mfc_set_dec_stream_buffer_v6(ctx
,
1815 vb2_dma_contig_plane_dma_addr(&temp_vb
->b
->vb2_buf
, 0),
1816 ctx
->consumed_stream
,
1817 temp_vb
->b
->vb2_buf
.planes
[0].bytesused
);
1819 dev
->curr_ctx
= ctx
->num
;
1820 if (temp_vb
->b
->vb2_buf
.planes
[0].bytesused
== 0) {
1822 mfc_debug(2, "Setting ctx->state to FINISHING\n");
1823 ctx
->state
= MFCINST_FINISHING
;
1825 s5p_mfc_decode_one_frame_v6(ctx
, last_frame
);
1830 static inline int s5p_mfc_run_enc_frame(struct s5p_mfc_ctx
*ctx
)
1832 struct s5p_mfc_dev
*dev
= ctx
->dev
;
1833 struct s5p_mfc_buf
*dst_mb
;
1834 struct s5p_mfc_buf
*src_mb
;
1835 unsigned long src_y_addr
, src_c_addr
, dst_addr
;
1837 unsigned int src_y_size, src_c_size;
1839 unsigned int dst_size
;
1841 if (list_empty(&ctx
->src_queue
) && ctx
->state
!= MFCINST_FINISHING
) {
1842 mfc_debug(2, "no src buffers.\n");
1846 if (list_empty(&ctx
->dst_queue
)) {
1847 mfc_debug(2, "no dst buffers.\n");
1851 if (list_empty(&ctx
->src_queue
)) {
1852 /* send null frame */
1853 s5p_mfc_set_enc_frame_buffer_v6(ctx
, 0, 0);
1856 src_mb
= list_entry(ctx
->src_queue
.next
, struct s5p_mfc_buf
, list
);
1857 src_mb
->flags
|= MFC_BUF_FLAG_USED
;
1858 if (src_mb
->b
->vb2_buf
.planes
[0].bytesused
== 0) {
1859 s5p_mfc_set_enc_frame_buffer_v6(ctx
, 0, 0);
1860 ctx
->state
= MFCINST_FINISHING
;
1862 src_y_addr
= vb2_dma_contig_plane_dma_addr(&src_mb
->b
->vb2_buf
, 0);
1863 src_c_addr
= vb2_dma_contig_plane_dma_addr(&src_mb
->b
->vb2_buf
, 1);
1865 mfc_debug(2, "enc src y addr: 0x%08lx\n", src_y_addr
);
1866 mfc_debug(2, "enc src c addr: 0x%08lx\n", src_c_addr
);
1868 s5p_mfc_set_enc_frame_buffer_v6(ctx
, src_y_addr
, src_c_addr
);
1869 if (src_mb
->flags
& MFC_BUF_FLAG_EOS
)
1870 ctx
->state
= MFCINST_FINISHING
;
1874 dst_mb
= list_entry(ctx
->dst_queue
.next
, struct s5p_mfc_buf
, list
);
1875 dst_mb
->flags
|= MFC_BUF_FLAG_USED
;
1876 dst_addr
= vb2_dma_contig_plane_dma_addr(&dst_mb
->b
->vb2_buf
, 0);
1877 dst_size
= vb2_plane_size(&dst_mb
->b
->vb2_buf
, 0);
1879 s5p_mfc_set_enc_stream_buffer_v6(ctx
, dst_addr
, dst_size
);
1881 dev
->curr_ctx
= ctx
->num
;
1882 s5p_mfc_encode_one_frame_v6(ctx
);
1887 static inline void s5p_mfc_run_init_dec(struct s5p_mfc_ctx
*ctx
)
1889 struct s5p_mfc_dev
*dev
= ctx
->dev
;
1890 struct s5p_mfc_buf
*temp_vb
;
1892 /* Initializing decoding - parsing header */
1893 mfc_debug(2, "Preparing to init decoding.\n");
1894 temp_vb
= list_entry(ctx
->src_queue
.next
, struct s5p_mfc_buf
, list
);
1895 mfc_debug(2, "Header size: %d\n", temp_vb
->b
->vb2_buf
.planes
[0].bytesused
);
1896 s5p_mfc_set_dec_stream_buffer_v6(ctx
,
1897 vb2_dma_contig_plane_dma_addr(&temp_vb
->b
->vb2_buf
, 0), 0,
1898 temp_vb
->b
->vb2_buf
.planes
[0].bytesused
);
1899 dev
->curr_ctx
= ctx
->num
;
1900 s5p_mfc_init_decode_v6(ctx
);
1903 static inline void s5p_mfc_run_init_enc(struct s5p_mfc_ctx
*ctx
)
1905 struct s5p_mfc_dev
*dev
= ctx
->dev
;
1906 struct s5p_mfc_buf
*dst_mb
;
1907 unsigned long dst_addr
;
1908 unsigned int dst_size
;
1910 dst_mb
= list_entry(ctx
->dst_queue
.next
, struct s5p_mfc_buf
, list
);
1911 dst_addr
= vb2_dma_contig_plane_dma_addr(&dst_mb
->b
->vb2_buf
, 0);
1912 dst_size
= vb2_plane_size(&dst_mb
->b
->vb2_buf
, 0);
1913 s5p_mfc_set_enc_stream_buffer_v6(ctx
, dst_addr
, dst_size
);
1914 dev
->curr_ctx
= ctx
->num
;
1915 s5p_mfc_init_encode_v6(ctx
);
1918 static inline int s5p_mfc_run_init_dec_buffers(struct s5p_mfc_ctx
*ctx
)
1920 struct s5p_mfc_dev
*dev
= ctx
->dev
;
1922 /* Header was parsed now start processing
1923 * First set the output frame buffers
1924 * s5p_mfc_alloc_dec_buffers(ctx); */
1926 if (ctx
->capture_state
!= QUEUE_BUFS_MMAPED
) {
1927 mfc_err("It seems that not all destination buffers were\n"
1928 "mmapped.MFC requires that all destination are mmapped\n"
1929 "before starting processing.\n");
1933 dev
->curr_ctx
= ctx
->num
;
1934 ret
= s5p_mfc_set_dec_frame_buffer_v6(ctx
);
1936 mfc_err("Failed to alloc frame mem.\n");
1937 ctx
->state
= MFCINST_ERROR
;
1942 static inline int s5p_mfc_run_init_enc_buffers(struct s5p_mfc_ctx
*ctx
)
1944 struct s5p_mfc_dev
*dev
= ctx
->dev
;
1947 dev
->curr_ctx
= ctx
->num
;
1948 ret
= s5p_mfc_set_enc_ref_buffer_v6(ctx
);
1950 mfc_err("Failed to alloc frame mem.\n");
1951 ctx
->state
= MFCINST_ERROR
;
1956 /* Try running an operation on hardware */
1957 static void s5p_mfc_try_run_v6(struct s5p_mfc_dev
*dev
)
1959 struct s5p_mfc_ctx
*ctx
;
1961 unsigned int ret
= 0;
1963 mfc_debug(1, "Try run dev: %p\n", dev
);
1965 /* Check whether hardware is not running */
1966 if (test_and_set_bit(0, &dev
->hw_lock
) != 0) {
1967 /* This is perfectly ok, the scheduled ctx should wait */
1968 mfc_debug(1, "Couldn't lock HW.\n");
1972 /* Choose the context to run */
1973 new_ctx
= s5p_mfc_get_new_ctx(dev
);
1975 /* No contexts to run */
1976 if (test_and_clear_bit(0, &dev
->hw_lock
) == 0) {
1977 mfc_err("Failed to unlock hardware.\n");
1981 mfc_debug(1, "No ctx is scheduled to be run.\n");
1985 mfc_debug(1, "New context: %d\n", new_ctx
);
1986 ctx
= dev
->ctx
[new_ctx
];
1987 mfc_debug(1, "Setting new context to %p\n", ctx
);
1988 /* Got context to run in ctx */
1989 mfc_debug(1, "ctx->dst_queue_cnt=%d ctx->dpb_count=%d ctx->src_queue_cnt=%d\n",
1990 ctx
->dst_queue_cnt
, ctx
->pb_count
, ctx
->src_queue_cnt
);
1991 mfc_debug(1, "ctx->state=%d\n", ctx
->state
);
1992 /* Last frame has already been sent to MFC
1993 * Now obtaining frames from MFC buffer */
1996 s5p_mfc_clean_ctx_int_flags(ctx
);
1998 if (ctx
->type
== MFCINST_DECODER
) {
1999 switch (ctx
->state
) {
2000 case MFCINST_FINISHING
:
2001 s5p_mfc_run_dec_last_frames(ctx
);
2003 case MFCINST_RUNNING
:
2004 ret
= s5p_mfc_run_dec_frame(ctx
);
2007 ret
= s5p_mfc_hw_call(dev
->mfc_cmds
, open_inst_cmd
,
2010 case MFCINST_RETURN_INST
:
2011 ret
= s5p_mfc_hw_call(dev
->mfc_cmds
, close_inst_cmd
,
2014 case MFCINST_GOT_INST
:
2015 s5p_mfc_run_init_dec(ctx
);
2017 case MFCINST_HEAD_PARSED
:
2018 ret
= s5p_mfc_run_init_dec_buffers(ctx
);
2021 s5p_mfc_set_flush(ctx
, ctx
->dpb_flush_flag
);
2023 case MFCINST_RES_CHANGE_INIT
:
2024 s5p_mfc_run_dec_last_frames(ctx
);
2026 case MFCINST_RES_CHANGE_FLUSH
:
2027 s5p_mfc_run_dec_last_frames(ctx
);
2029 case MFCINST_RES_CHANGE_END
:
2030 mfc_debug(2, "Finished remaining frames after resolution change.\n");
2031 ctx
->capture_state
= QUEUE_FREE
;
2032 mfc_debug(2, "Will re-init the codec`.\n");
2033 s5p_mfc_run_init_dec(ctx
);
2038 } else if (ctx
->type
== MFCINST_ENCODER
) {
2039 switch (ctx
->state
) {
2040 case MFCINST_FINISHING
:
2041 case MFCINST_RUNNING
:
2042 ret
= s5p_mfc_run_enc_frame(ctx
);
2045 ret
= s5p_mfc_hw_call(dev
->mfc_cmds
, open_inst_cmd
,
2048 case MFCINST_RETURN_INST
:
2049 ret
= s5p_mfc_hw_call(dev
->mfc_cmds
, close_inst_cmd
,
2052 case MFCINST_GOT_INST
:
2053 s5p_mfc_run_init_enc(ctx
);
2055 case MFCINST_HEAD_PRODUCED
:
2056 ret
= s5p_mfc_run_init_enc_buffers(ctx
);
2062 mfc_err("invalid context type: %d\n", ctx
->type
);
2067 /* Free hardware lock */
2068 if (test_and_clear_bit(0, &dev
->hw_lock
) == 0)
2069 mfc_err("Failed to unlock hardware.\n");
2071 /* This is in deed imporant, as no operation has been
2072 * scheduled, reduce the clock count as no one will
2073 * ever do this, because no interrupt related to this try_run
2074 * will ever come from hardware. */
2075 s5p_mfc_clock_off();
2079 static void s5p_mfc_clear_int_flags_v6(struct s5p_mfc_dev
*dev
)
2081 const struct s5p_mfc_regs
*mfc_regs
= dev
->mfc_regs
;
2082 writel(0, mfc_regs
->risc2host_command
);
2083 writel(0, mfc_regs
->risc2host_int
);
2087 s5p_mfc_read_info_v6(struct s5p_mfc_ctx
*ctx
, unsigned long ofs
)
2092 ret
= readl((void __iomem
*)ofs
);
2093 s5p_mfc_clock_off();
2098 static int s5p_mfc_get_dspl_y_adr_v6(struct s5p_mfc_dev
*dev
)
2100 return readl(dev
->mfc_regs
->d_display_first_plane_addr
);
2103 static int s5p_mfc_get_dec_y_adr_v6(struct s5p_mfc_dev
*dev
)
2105 return readl(dev
->mfc_regs
->d_decoded_first_plane_addr
);
2108 static int s5p_mfc_get_dspl_status_v6(struct s5p_mfc_dev
*dev
)
2110 return readl(dev
->mfc_regs
->d_display_status
);
2113 static int s5p_mfc_get_dec_status_v6(struct s5p_mfc_dev
*dev
)
2115 return readl(dev
->mfc_regs
->d_decoded_status
);
2118 static int s5p_mfc_get_dec_frame_type_v6(struct s5p_mfc_dev
*dev
)
2120 return readl(dev
->mfc_regs
->d_decoded_frame_type
) &
2121 S5P_FIMV_DECODE_FRAME_MASK_V6
;
2124 static int s5p_mfc_get_disp_frame_type_v6(struct s5p_mfc_ctx
*ctx
)
2126 struct s5p_mfc_dev
*dev
= ctx
->dev
;
2127 return readl(dev
->mfc_regs
->d_display_frame_type
) &
2128 S5P_FIMV_DECODE_FRAME_MASK_V6
;
2131 static int s5p_mfc_get_consumed_stream_v6(struct s5p_mfc_dev
*dev
)
2133 return readl(dev
->mfc_regs
->d_decoded_nal_size
);
2136 static int s5p_mfc_get_int_reason_v6(struct s5p_mfc_dev
*dev
)
2138 return readl(dev
->mfc_regs
->risc2host_command
) &
2139 S5P_FIMV_RISC2HOST_CMD_MASK
;
2142 static int s5p_mfc_get_int_err_v6(struct s5p_mfc_dev
*dev
)
2144 return readl(dev
->mfc_regs
->error_code
);
2147 static int s5p_mfc_err_dec_v6(unsigned int err
)
2149 return (err
& S5P_FIMV_ERR_DEC_MASK_V6
) >> S5P_FIMV_ERR_DEC_SHIFT_V6
;
2152 static int s5p_mfc_get_img_width_v6(struct s5p_mfc_dev
*dev
)
2154 return readl(dev
->mfc_regs
->d_display_frame_width
);
2157 static int s5p_mfc_get_img_height_v6(struct s5p_mfc_dev
*dev
)
2159 return readl(dev
->mfc_regs
->d_display_frame_height
);
2162 static int s5p_mfc_get_dpb_count_v6(struct s5p_mfc_dev
*dev
)
2164 return readl(dev
->mfc_regs
->d_min_num_dpb
);
2167 static int s5p_mfc_get_mv_count_v6(struct s5p_mfc_dev
*dev
)
2169 return readl(dev
->mfc_regs
->d_min_num_mv
);
2172 static int s5p_mfc_get_min_scratch_buf_size(struct s5p_mfc_dev
*dev
)
2174 return readl(dev
->mfc_regs
->d_min_scratch_buffer_size
);
2177 static int s5p_mfc_get_e_min_scratch_buf_size(struct s5p_mfc_dev
*dev
)
2179 return readl(dev
->mfc_regs
->e_min_scratch_buffer_size
);
2182 static int s5p_mfc_get_inst_no_v6(struct s5p_mfc_dev
*dev
)
2184 return readl(dev
->mfc_regs
->ret_instance_id
);
2187 static int s5p_mfc_get_enc_dpb_count_v6(struct s5p_mfc_dev
*dev
)
2189 return readl(dev
->mfc_regs
->e_num_dpb
);
2192 static int s5p_mfc_get_enc_strm_size_v6(struct s5p_mfc_dev
*dev
)
2194 return readl(dev
->mfc_regs
->e_stream_size
);
2197 static int s5p_mfc_get_enc_slice_type_v6(struct s5p_mfc_dev
*dev
)
2199 return readl(dev
->mfc_regs
->e_slice_type
);
2202 static unsigned int s5p_mfc_get_pic_type_top_v6(struct s5p_mfc_ctx
*ctx
)
2204 return s5p_mfc_read_info_v6(ctx
,
2205 (__force
unsigned long) ctx
->dev
->mfc_regs
->d_ret_picture_tag_top
);
2208 static unsigned int s5p_mfc_get_pic_type_bot_v6(struct s5p_mfc_ctx
*ctx
)
2210 return s5p_mfc_read_info_v6(ctx
,
2211 (__force
unsigned long) ctx
->dev
->mfc_regs
->d_ret_picture_tag_bot
);
2214 static unsigned int s5p_mfc_get_crop_info_h_v6(struct s5p_mfc_ctx
*ctx
)
2216 return s5p_mfc_read_info_v6(ctx
,
2217 (__force
unsigned long) ctx
->dev
->mfc_regs
->d_display_crop_info1
);
2220 static unsigned int s5p_mfc_get_crop_info_v_v6(struct s5p_mfc_ctx
*ctx
)
2222 return s5p_mfc_read_info_v6(ctx
,
2223 (__force
unsigned long) ctx
->dev
->mfc_regs
->d_display_crop_info2
);
2226 static struct s5p_mfc_regs mfc_regs
;
2228 /* Initialize registers for MFC v6 onwards */
2229 const struct s5p_mfc_regs
*s5p_mfc_init_regs_v6_plus(struct s5p_mfc_dev
*dev
)
2231 memset(&mfc_regs
, 0, sizeof(mfc_regs
));
2233 #define S5P_MFC_REG_ADDR(dev, reg) ((dev)->regs_base + (reg))
2234 #define R(m, r) mfc_regs.m = S5P_MFC_REG_ADDR(dev, r)
2235 /* codec common registers */
2236 R(risc_on
, S5P_FIMV_RISC_ON_V6
);
2237 R(risc2host_int
, S5P_FIMV_RISC2HOST_INT_V6
);
2238 R(host2risc_int
, S5P_FIMV_HOST2RISC_INT_V6
);
2239 R(risc_base_address
, S5P_FIMV_RISC_BASE_ADDRESS_V6
);
2240 R(mfc_reset
, S5P_FIMV_MFC_RESET_V6
);
2241 R(host2risc_command
, S5P_FIMV_HOST2RISC_CMD_V6
);
2242 R(risc2host_command
, S5P_FIMV_RISC2HOST_CMD_V6
);
2243 R(firmware_version
, S5P_FIMV_FW_VERSION_V6
);
2244 R(instance_id
, S5P_FIMV_INSTANCE_ID_V6
);
2245 R(codec_type
, S5P_FIMV_CODEC_TYPE_V6
);
2246 R(context_mem_addr
, S5P_FIMV_CONTEXT_MEM_ADDR_V6
);
2247 R(context_mem_size
, S5P_FIMV_CONTEXT_MEM_SIZE_V6
);
2248 R(pixel_format
, S5P_FIMV_PIXEL_FORMAT_V6
);
2249 R(ret_instance_id
, S5P_FIMV_RET_INSTANCE_ID_V6
);
2250 R(error_code
, S5P_FIMV_ERROR_CODE_V6
);
2252 /* decoder registers */
2253 R(d_crc_ctrl
, S5P_FIMV_D_CRC_CTRL_V6
);
2254 R(d_dec_options
, S5P_FIMV_D_DEC_OPTIONS_V6
);
2255 R(d_display_delay
, S5P_FIMV_D_DISPLAY_DELAY_V6
);
2256 R(d_sei_enable
, S5P_FIMV_D_SEI_ENABLE_V6
);
2257 R(d_min_num_dpb
, S5P_FIMV_D_MIN_NUM_DPB_V6
);
2258 R(d_min_num_mv
, S5P_FIMV_D_MIN_NUM_MV_V6
);
2259 R(d_mvc_num_views
, S5P_FIMV_D_MVC_NUM_VIEWS_V6
);
2260 R(d_num_dpb
, S5P_FIMV_D_NUM_DPB_V6
);
2261 R(d_num_mv
, S5P_FIMV_D_NUM_MV_V6
);
2262 R(d_init_buffer_options
, S5P_FIMV_D_INIT_BUFFER_OPTIONS_V6
);
2263 R(d_first_plane_dpb_size
, S5P_FIMV_D_LUMA_DPB_SIZE_V6
);
2264 R(d_second_plane_dpb_size
, S5P_FIMV_D_CHROMA_DPB_SIZE_V6
);
2265 R(d_mv_buffer_size
, S5P_FIMV_D_MV_BUFFER_SIZE_V6
);
2266 R(d_first_plane_dpb
, S5P_FIMV_D_LUMA_DPB_V6
);
2267 R(d_second_plane_dpb
, S5P_FIMV_D_CHROMA_DPB_V6
);
2268 R(d_mv_buffer
, S5P_FIMV_D_MV_BUFFER_V6
);
2269 R(d_scratch_buffer_addr
, S5P_FIMV_D_SCRATCH_BUFFER_ADDR_V6
);
2270 R(d_scratch_buffer_size
, S5P_FIMV_D_SCRATCH_BUFFER_SIZE_V6
);
2271 R(d_cpb_buffer_addr
, S5P_FIMV_D_CPB_BUFFER_ADDR_V6
);
2272 R(d_cpb_buffer_size
, S5P_FIMV_D_CPB_BUFFER_SIZE_V6
);
2273 R(d_available_dpb_flag_lower
, S5P_FIMV_D_AVAILABLE_DPB_FLAG_LOWER_V6
);
2274 R(d_cpb_buffer_offset
, S5P_FIMV_D_CPB_BUFFER_OFFSET_V6
);
2275 R(d_slice_if_enable
, S5P_FIMV_D_SLICE_IF_ENABLE_V6
);
2276 R(d_stream_data_size
, S5P_FIMV_D_STREAM_DATA_SIZE_V6
);
2277 R(d_display_frame_width
, S5P_FIMV_D_DISPLAY_FRAME_WIDTH_V6
);
2278 R(d_display_frame_height
, S5P_FIMV_D_DISPLAY_FRAME_HEIGHT_V6
);
2279 R(d_display_status
, S5P_FIMV_D_DISPLAY_STATUS_V6
);
2280 R(d_display_first_plane_addr
, S5P_FIMV_D_DISPLAY_LUMA_ADDR_V6
);
2281 R(d_display_second_plane_addr
, S5P_FIMV_D_DISPLAY_CHROMA_ADDR_V6
);
2282 R(d_display_frame_type
, S5P_FIMV_D_DISPLAY_FRAME_TYPE_V6
);
2283 R(d_display_crop_info1
, S5P_FIMV_D_DISPLAY_CROP_INFO1_V6
);
2284 R(d_display_crop_info2
, S5P_FIMV_D_DISPLAY_CROP_INFO2_V6
);
2285 R(d_display_aspect_ratio
, S5P_FIMV_D_DISPLAY_ASPECT_RATIO_V6
);
2286 R(d_display_extended_ar
, S5P_FIMV_D_DISPLAY_EXTENDED_AR_V6
);
2287 R(d_decoded_status
, S5P_FIMV_D_DECODED_STATUS_V6
);
2288 R(d_decoded_first_plane_addr
, S5P_FIMV_D_DECODED_LUMA_ADDR_V6
);
2289 R(d_decoded_second_plane_addr
, S5P_FIMV_D_DECODED_CHROMA_ADDR_V6
);
2290 R(d_decoded_frame_type
, S5P_FIMV_D_DECODED_FRAME_TYPE_V6
);
2291 R(d_decoded_nal_size
, S5P_FIMV_D_DECODED_NAL_SIZE_V6
);
2292 R(d_ret_picture_tag_top
, S5P_FIMV_D_RET_PICTURE_TAG_TOP_V6
);
2293 R(d_ret_picture_tag_bot
, S5P_FIMV_D_RET_PICTURE_TAG_BOT_V6
);
2294 R(d_h264_info
, S5P_FIMV_D_H264_INFO_V6
);
2295 R(d_mvc_view_id
, S5P_FIMV_D_MVC_VIEW_ID_V6
);
2296 R(d_frame_pack_sei_avail
, S5P_FIMV_D_FRAME_PACK_SEI_AVAIL_V6
);
2298 /* encoder registers */
2299 R(e_frame_width
, S5P_FIMV_E_FRAME_WIDTH_V6
);
2300 R(e_frame_height
, S5P_FIMV_E_FRAME_HEIGHT_V6
);
2301 R(e_cropped_frame_width
, S5P_FIMV_E_CROPPED_FRAME_WIDTH_V6
);
2302 R(e_cropped_frame_height
, S5P_FIMV_E_CROPPED_FRAME_HEIGHT_V6
);
2303 R(e_frame_crop_offset
, S5P_FIMV_E_FRAME_CROP_OFFSET_V6
);
2304 R(e_enc_options
, S5P_FIMV_E_ENC_OPTIONS_V6
);
2305 R(e_picture_profile
, S5P_FIMV_E_PICTURE_PROFILE_V6
);
2306 R(e_vbv_buffer_size
, S5P_FIMV_E_VBV_BUFFER_SIZE_V6
);
2307 R(e_vbv_init_delay
, S5P_FIMV_E_VBV_INIT_DELAY_V6
);
2308 R(e_fixed_picture_qp
, S5P_FIMV_E_FIXED_PICTURE_QP_V6
);
2309 R(e_rc_config
, S5P_FIMV_E_RC_CONFIG_V6
);
2310 R(e_rc_qp_bound
, S5P_FIMV_E_RC_QP_BOUND_V6
);
2311 R(e_rc_mode
, S5P_FIMV_E_RC_RPARAM_V6
);
2312 R(e_mb_rc_config
, S5P_FIMV_E_MB_RC_CONFIG_V6
);
2313 R(e_padding_ctrl
, S5P_FIMV_E_PADDING_CTRL_V6
);
2314 R(e_mv_hor_range
, S5P_FIMV_E_MV_HOR_RANGE_V6
);
2315 R(e_mv_ver_range
, S5P_FIMV_E_MV_VER_RANGE_V6
);
2316 R(e_num_dpb
, S5P_FIMV_E_NUM_DPB_V6
);
2317 R(e_luma_dpb
, S5P_FIMV_E_LUMA_DPB_V6
);
2318 R(e_chroma_dpb
, S5P_FIMV_E_CHROMA_DPB_V6
);
2319 R(e_me_buffer
, S5P_FIMV_E_ME_BUFFER_V6
);
2320 R(e_scratch_buffer_addr
, S5P_FIMV_E_SCRATCH_BUFFER_ADDR_V6
);
2321 R(e_scratch_buffer_size
, S5P_FIMV_E_SCRATCH_BUFFER_SIZE_V6
);
2322 R(e_tmv_buffer0
, S5P_FIMV_E_TMV_BUFFER0_V6
);
2323 R(e_tmv_buffer1
, S5P_FIMV_E_TMV_BUFFER1_V6
);
2324 R(e_source_first_plane_addr
, S5P_FIMV_E_SOURCE_LUMA_ADDR_V6
);
2325 R(e_source_second_plane_addr
, S5P_FIMV_E_SOURCE_CHROMA_ADDR_V6
);
2326 R(e_stream_buffer_addr
, S5P_FIMV_E_STREAM_BUFFER_ADDR_V6
);
2327 R(e_stream_buffer_size
, S5P_FIMV_E_STREAM_BUFFER_SIZE_V6
);
2328 R(e_roi_buffer_addr
, S5P_FIMV_E_ROI_BUFFER_ADDR_V6
);
2329 R(e_param_change
, S5P_FIMV_E_PARAM_CHANGE_V6
);
2330 R(e_ir_size
, S5P_FIMV_E_IR_SIZE_V6
);
2331 R(e_gop_config
, S5P_FIMV_E_GOP_CONFIG_V6
);
2332 R(e_mslice_mode
, S5P_FIMV_E_MSLICE_MODE_V6
);
2333 R(e_mslice_size_mb
, S5P_FIMV_E_MSLICE_SIZE_MB_V6
);
2334 R(e_mslice_size_bits
, S5P_FIMV_E_MSLICE_SIZE_BITS_V6
);
2335 R(e_frame_insertion
, S5P_FIMV_E_FRAME_INSERTION_V6
);
2336 R(e_rc_frame_rate
, S5P_FIMV_E_RC_FRAME_RATE_V6
);
2337 R(e_rc_bit_rate
, S5P_FIMV_E_RC_BIT_RATE_V6
);
2338 R(e_rc_roi_ctrl
, S5P_FIMV_E_RC_ROI_CTRL_V6
);
2339 R(e_picture_tag
, S5P_FIMV_E_PICTURE_TAG_V6
);
2340 R(e_bit_count_enable
, S5P_FIMV_E_BIT_COUNT_ENABLE_V6
);
2341 R(e_max_bit_count
, S5P_FIMV_E_MAX_BIT_COUNT_V6
);
2342 R(e_min_bit_count
, S5P_FIMV_E_MIN_BIT_COUNT_V6
);
2343 R(e_metadata_buffer_addr
, S5P_FIMV_E_METADATA_BUFFER_ADDR_V6
);
2344 R(e_metadata_buffer_size
, S5P_FIMV_E_METADATA_BUFFER_SIZE_V6
);
2345 R(e_encoded_source_first_plane_addr
,
2346 S5P_FIMV_E_ENCODED_SOURCE_LUMA_ADDR_V6
);
2347 R(e_encoded_source_second_plane_addr
,
2348 S5P_FIMV_E_ENCODED_SOURCE_CHROMA_ADDR_V6
);
2349 R(e_stream_size
, S5P_FIMV_E_STREAM_SIZE_V6
);
2350 R(e_slice_type
, S5P_FIMV_E_SLICE_TYPE_V6
);
2351 R(e_picture_count
, S5P_FIMV_E_PICTURE_COUNT_V6
);
2352 R(e_ret_picture_tag
, S5P_FIMV_E_RET_PICTURE_TAG_V6
);
2353 R(e_recon_luma_dpb_addr
, S5P_FIMV_E_RECON_LUMA_DPB_ADDR_V6
);
2354 R(e_recon_chroma_dpb_addr
, S5P_FIMV_E_RECON_CHROMA_DPB_ADDR_V6
);
2355 R(e_mpeg4_options
, S5P_FIMV_E_MPEG4_OPTIONS_V6
);
2356 R(e_mpeg4_hec_period
, S5P_FIMV_E_MPEG4_HEC_PERIOD_V6
);
2357 R(e_aspect_ratio
, S5P_FIMV_E_ASPECT_RATIO_V6
);
2358 R(e_extended_sar
, S5P_FIMV_E_EXTENDED_SAR_V6
);
2359 R(e_h264_options
, S5P_FIMV_E_H264_OPTIONS_V6
);
2360 R(e_h264_lf_alpha_offset
, S5P_FIMV_E_H264_LF_ALPHA_OFFSET_V6
);
2361 R(e_h264_lf_beta_offset
, S5P_FIMV_E_H264_LF_BETA_OFFSET_V6
);
2362 R(e_h264_i_period
, S5P_FIMV_E_H264_I_PERIOD_V6
);
2363 R(e_h264_fmo_slice_grp_map_type
,
2364 S5P_FIMV_E_H264_FMO_SLICE_GRP_MAP_TYPE_V6
);
2365 R(e_h264_fmo_num_slice_grp_minus1
,
2366 S5P_FIMV_E_H264_FMO_NUM_SLICE_GRP_MINUS1_V6
);
2367 R(e_h264_fmo_slice_grp_change_dir
,
2368 S5P_FIMV_E_H264_FMO_SLICE_GRP_CHANGE_DIR_V6
);
2369 R(e_h264_fmo_slice_grp_change_rate_minus1
,
2370 S5P_FIMV_E_H264_FMO_SLICE_GRP_CHANGE_RATE_MINUS1_V6
);
2371 R(e_h264_fmo_run_length_minus1_0
,
2372 S5P_FIMV_E_H264_FMO_RUN_LENGTH_MINUS1_0_V6
);
2373 R(e_h264_aso_slice_order_0
, S5P_FIMV_E_H264_ASO_SLICE_ORDER_0_V6
);
2374 R(e_h264_num_t_layer
, S5P_FIMV_E_H264_NUM_T_LAYER_V6
);
2375 R(e_h264_hierarchical_qp_layer0
,
2376 S5P_FIMV_E_H264_HIERARCHICAL_QP_LAYER0_V6
);
2377 R(e_h264_frame_packing_sei_info
,
2378 S5P_FIMV_E_H264_FRAME_PACKING_SEI_INFO_V6
);
2380 if (!IS_MFCV7_PLUS(dev
))
2383 /* Initialize registers used in MFC v7+ */
2384 R(e_source_first_plane_addr
, S5P_FIMV_E_SOURCE_FIRST_ADDR_V7
);
2385 R(e_source_second_plane_addr
, S5P_FIMV_E_SOURCE_SECOND_ADDR_V7
);
2386 R(e_source_third_plane_addr
, S5P_FIMV_E_SOURCE_THIRD_ADDR_V7
);
2387 R(e_source_first_plane_stride
, S5P_FIMV_E_SOURCE_FIRST_STRIDE_V7
);
2388 R(e_source_second_plane_stride
, S5P_FIMV_E_SOURCE_SECOND_STRIDE_V7
);
2389 R(e_source_third_plane_stride
, S5P_FIMV_E_SOURCE_THIRD_STRIDE_V7
);
2390 R(e_encoded_source_first_plane_addr
,
2391 S5P_FIMV_E_ENCODED_SOURCE_FIRST_ADDR_V7
);
2392 R(e_encoded_source_second_plane_addr
,
2393 S5P_FIMV_E_ENCODED_SOURCE_SECOND_ADDR_V7
);
2394 R(e_vp8_options
, S5P_FIMV_E_VP8_OPTIONS_V7
);
2396 if (!IS_MFCV8_PLUS(dev
))
2399 /* Initialize registers used in MFC v8 only.
2400 * Also, over-write the registers which have
2401 * a different offset for MFC v8. */
2402 R(d_stream_data_size
, S5P_FIMV_D_STREAM_DATA_SIZE_V8
);
2403 R(d_cpb_buffer_addr
, S5P_FIMV_D_CPB_BUFFER_ADDR_V8
);
2404 R(d_cpb_buffer_size
, S5P_FIMV_D_CPB_BUFFER_SIZE_V8
);
2405 R(d_cpb_buffer_offset
, S5P_FIMV_D_CPB_BUFFER_OFFSET_V8
);
2406 R(d_first_plane_dpb_size
, S5P_FIMV_D_FIRST_PLANE_DPB_SIZE_V8
);
2407 R(d_second_plane_dpb_size
, S5P_FIMV_D_SECOND_PLANE_DPB_SIZE_V8
);
2408 R(d_scratch_buffer_addr
, S5P_FIMV_D_SCRATCH_BUFFER_ADDR_V8
);
2409 R(d_scratch_buffer_size
, S5P_FIMV_D_SCRATCH_BUFFER_SIZE_V8
);
2410 R(d_first_plane_dpb_stride_size
,
2411 S5P_FIMV_D_FIRST_PLANE_DPB_STRIDE_SIZE_V8
);
2412 R(d_second_plane_dpb_stride_size
,
2413 S5P_FIMV_D_SECOND_PLANE_DPB_STRIDE_SIZE_V8
);
2414 R(d_mv_buffer_size
, S5P_FIMV_D_MV_BUFFER_SIZE_V8
);
2415 R(d_num_mv
, S5P_FIMV_D_NUM_MV_V8
);
2416 R(d_first_plane_dpb
, S5P_FIMV_D_FIRST_PLANE_DPB_V8
);
2417 R(d_second_plane_dpb
, S5P_FIMV_D_SECOND_PLANE_DPB_V8
);
2418 R(d_mv_buffer
, S5P_FIMV_D_MV_BUFFER_V8
);
2419 R(d_init_buffer_options
, S5P_FIMV_D_INIT_BUFFER_OPTIONS_V8
);
2420 R(d_available_dpb_flag_lower
, S5P_FIMV_D_AVAILABLE_DPB_FLAG_LOWER_V8
);
2421 R(d_slice_if_enable
, S5P_FIMV_D_SLICE_IF_ENABLE_V8
);
2422 R(d_display_first_plane_addr
, S5P_FIMV_D_DISPLAY_FIRST_PLANE_ADDR_V8
);
2423 R(d_display_second_plane_addr
, S5P_FIMV_D_DISPLAY_SECOND_PLANE_ADDR_V8
);
2424 R(d_decoded_first_plane_addr
, S5P_FIMV_D_DECODED_FIRST_PLANE_ADDR_V8
);
2425 R(d_decoded_second_plane_addr
, S5P_FIMV_D_DECODED_SECOND_PLANE_ADDR_V8
);
2426 R(d_display_status
, S5P_FIMV_D_DISPLAY_STATUS_V8
);
2427 R(d_decoded_status
, S5P_FIMV_D_DECODED_STATUS_V8
);
2428 R(d_decoded_frame_type
, S5P_FIMV_D_DECODED_FRAME_TYPE_V8
);
2429 R(d_display_frame_type
, S5P_FIMV_D_DISPLAY_FRAME_TYPE_V8
);
2430 R(d_decoded_nal_size
, S5P_FIMV_D_DECODED_NAL_SIZE_V8
);
2431 R(d_display_frame_width
, S5P_FIMV_D_DISPLAY_FRAME_WIDTH_V8
);
2432 R(d_display_frame_height
, S5P_FIMV_D_DISPLAY_FRAME_HEIGHT_V8
);
2433 R(d_frame_pack_sei_avail
, S5P_FIMV_D_FRAME_PACK_SEI_AVAIL_V8
);
2434 R(d_mvc_num_views
, S5P_FIMV_D_MVC_NUM_VIEWS_V8
);
2435 R(d_mvc_view_id
, S5P_FIMV_D_MVC_VIEW_ID_V8
);
2436 R(d_ret_picture_tag_top
, S5P_FIMV_D_RET_PICTURE_TAG_TOP_V8
);
2437 R(d_ret_picture_tag_bot
, S5P_FIMV_D_RET_PICTURE_TAG_BOT_V8
);
2438 R(d_display_crop_info1
, S5P_FIMV_D_DISPLAY_CROP_INFO1_V8
);
2439 R(d_display_crop_info2
, S5P_FIMV_D_DISPLAY_CROP_INFO2_V8
);
2440 R(d_min_scratch_buffer_size
, S5P_FIMV_D_MIN_SCRATCH_BUFFER_SIZE_V8
);
2442 /* encoder registers */
2443 R(e_padding_ctrl
, S5P_FIMV_E_PADDING_CTRL_V8
);
2444 R(e_rc_config
, S5P_FIMV_E_RC_CONFIG_V8
);
2445 R(e_rc_mode
, S5P_FIMV_E_RC_RPARAM_V8
);
2446 R(e_mv_hor_range
, S5P_FIMV_E_MV_HOR_RANGE_V8
);
2447 R(e_mv_ver_range
, S5P_FIMV_E_MV_VER_RANGE_V8
);
2448 R(e_rc_qp_bound
, S5P_FIMV_E_RC_QP_BOUND_V8
);
2449 R(e_fixed_picture_qp
, S5P_FIMV_E_FIXED_PICTURE_QP_V8
);
2450 R(e_vbv_buffer_size
, S5P_FIMV_E_VBV_BUFFER_SIZE_V8
);
2451 R(e_vbv_init_delay
, S5P_FIMV_E_VBV_INIT_DELAY_V8
);
2452 R(e_mb_rc_config
, S5P_FIMV_E_MB_RC_CONFIG_V8
);
2453 R(e_aspect_ratio
, S5P_FIMV_E_ASPECT_RATIO_V8
);
2454 R(e_extended_sar
, S5P_FIMV_E_EXTENDED_SAR_V8
);
2455 R(e_h264_options
, S5P_FIMV_E_H264_OPTIONS_V8
);
2456 R(e_min_scratch_buffer_size
, S5P_FIMV_E_MIN_SCRATCH_BUFFER_SIZE_V8
);
2458 if (!IS_MFCV10(dev
))
2461 /* Initialize registers used in MFC v10 only.
2462 * Also, over-write the registers which have
2463 * a different offset for MFC v10.
2466 /* decoder registers */
2467 R(d_static_buffer_addr
, S5P_FIMV_D_STATIC_BUFFER_ADDR_V10
);
2468 R(d_static_buffer_size
, S5P_FIMV_D_STATIC_BUFFER_SIZE_V10
);
2470 /* encoder registers */
2471 R(e_num_t_layer
, S5P_FIMV_E_NUM_T_LAYER_V10
);
2472 R(e_hier_qp_layer0
, S5P_FIMV_E_HIERARCHICAL_QP_LAYER0_V10
);
2473 R(e_hier_bit_rate_layer0
, S5P_FIMV_E_HIERARCHICAL_BIT_RATE_LAYER0_V10
);
2474 R(e_hevc_options
, S5P_FIMV_E_HEVC_OPTIONS_V10
);
2475 R(e_hevc_refresh_period
, S5P_FIMV_E_HEVC_REFRESH_PERIOD_V10
);
2476 R(e_hevc_lf_beta_offset_div2
, S5P_FIMV_E_HEVC_LF_BETA_OFFSET_DIV2_V10
);
2477 R(e_hevc_lf_tc_offset_div2
, S5P_FIMV_E_HEVC_LF_TC_OFFSET_DIV2_V10
);
2478 R(e_hevc_nal_control
, S5P_FIMV_E_HEVC_NAL_CONTROL_V10
);
2482 #undef S5P_MFC_REG_ADDR
2486 /* Initialize opr function pointers for MFC v6 */
2487 static struct s5p_mfc_hw_ops s5p_mfc_ops_v6
= {
2488 .alloc_dec_temp_buffers
= s5p_mfc_alloc_dec_temp_buffers_v6
,
2489 .release_dec_desc_buffer
= s5p_mfc_release_dec_desc_buffer_v6
,
2490 .alloc_codec_buffers
= s5p_mfc_alloc_codec_buffers_v6
,
2491 .release_codec_buffers
= s5p_mfc_release_codec_buffers_v6
,
2492 .alloc_instance_buffer
= s5p_mfc_alloc_instance_buffer_v6
,
2493 .release_instance_buffer
= s5p_mfc_release_instance_buffer_v6
,
2494 .alloc_dev_context_buffer
=
2495 s5p_mfc_alloc_dev_context_buffer_v6
,
2496 .release_dev_context_buffer
=
2497 s5p_mfc_release_dev_context_buffer_v6
,
2498 .dec_calc_dpb_size
= s5p_mfc_dec_calc_dpb_size_v6
,
2499 .enc_calc_src_size
= s5p_mfc_enc_calc_src_size_v6
,
2500 .set_enc_stream_buffer
= s5p_mfc_set_enc_stream_buffer_v6
,
2501 .set_enc_frame_buffer
= s5p_mfc_set_enc_frame_buffer_v6
,
2502 .get_enc_frame_buffer
= s5p_mfc_get_enc_frame_buffer_v6
,
2503 .try_run
= s5p_mfc_try_run_v6
,
2504 .clear_int_flags
= s5p_mfc_clear_int_flags_v6
,
2505 .get_dspl_y_adr
= s5p_mfc_get_dspl_y_adr_v6
,
2506 .get_dec_y_adr
= s5p_mfc_get_dec_y_adr_v6
,
2507 .get_dspl_status
= s5p_mfc_get_dspl_status_v6
,
2508 .get_dec_status
= s5p_mfc_get_dec_status_v6
,
2509 .get_dec_frame_type
= s5p_mfc_get_dec_frame_type_v6
,
2510 .get_disp_frame_type
= s5p_mfc_get_disp_frame_type_v6
,
2511 .get_consumed_stream
= s5p_mfc_get_consumed_stream_v6
,
2512 .get_int_reason
= s5p_mfc_get_int_reason_v6
,
2513 .get_int_err
= s5p_mfc_get_int_err_v6
,
2514 .err_dec
= s5p_mfc_err_dec_v6
,
2515 .get_img_width
= s5p_mfc_get_img_width_v6
,
2516 .get_img_height
= s5p_mfc_get_img_height_v6
,
2517 .get_dpb_count
= s5p_mfc_get_dpb_count_v6
,
2518 .get_mv_count
= s5p_mfc_get_mv_count_v6
,
2519 .get_inst_no
= s5p_mfc_get_inst_no_v6
,
2520 .get_enc_strm_size
= s5p_mfc_get_enc_strm_size_v6
,
2521 .get_enc_slice_type
= s5p_mfc_get_enc_slice_type_v6
,
2522 .get_enc_dpb_count
= s5p_mfc_get_enc_dpb_count_v6
,
2523 .get_pic_type_top
= s5p_mfc_get_pic_type_top_v6
,
2524 .get_pic_type_bot
= s5p_mfc_get_pic_type_bot_v6
,
2525 .get_crop_info_h
= s5p_mfc_get_crop_info_h_v6
,
2526 .get_crop_info_v
= s5p_mfc_get_crop_info_v_v6
,
2527 .get_min_scratch_buf_size
= s5p_mfc_get_min_scratch_buf_size
,
2528 .get_e_min_scratch_buf_size
= s5p_mfc_get_e_min_scratch_buf_size
,
2531 struct s5p_mfc_hw_ops
*s5p_mfc_init_hw_ops_v6(void)
2533 return &s5p_mfc_ops_v6
;