2 * drivers/media/platform/samsung/mfc5/s5p_mfc_opr_v5.c
4 * Samsung MFC (Multi Function Codec - FIMV) driver
5 * This file contains hw related functions.
7 * Kamil Debski, Copyright (c) 2011 Samsung Electronics
8 * http://www.samsung.com/
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
15 #include "s5p_mfc_common.h"
16 #include "s5p_mfc_cmd.h"
17 #include "s5p_mfc_ctrl.h"
18 #include "s5p_mfc_debug.h"
19 #include "s5p_mfc_intr.h"
20 #include "s5p_mfc_pm.h"
21 #include "s5p_mfc_opr.h"
22 #include "s5p_mfc_opr_v5.h"
23 #include <asm/cacheflush.h>
24 #include <linux/delay.h>
25 #include <linux/dma-mapping.h>
26 #include <linux/err.h>
27 #include <linux/firmware.h>
29 #include <linux/jiffies.h>
31 #include <linux/sched.h>
33 #define OFFSETA(x) (((x) - dev->dma_base[BANK_L_CTX]) >> MFC_OFFSET_SHIFT)
34 #define OFFSETB(x) (((x) - dev->dma_base[BANK_R_CTX]) >> MFC_OFFSET_SHIFT)
36 /* Allocate temporary buffers for decoding */
37 static int s5p_mfc_alloc_dec_temp_buffers_v5(struct s5p_mfc_ctx
*ctx
)
39 struct s5p_mfc_dev
*dev
= ctx
->dev
;
40 struct s5p_mfc_buf_size_v5
*buf_size
= dev
->variant
->buf_size
->priv
;
43 ctx
->dsc
.size
= buf_size
->dsc
;
44 ret
= s5p_mfc_alloc_priv_buf(dev
, BANK_L_CTX
, &ctx
->dsc
);
46 mfc_err("Failed to allocate temporary buffer\n");
50 BUG_ON(ctx
->dsc
.dma
& ((1 << MFC_BANK1_ALIGN_ORDER
) - 1));
51 memset(ctx
->dsc
.virt
, 0, ctx
->dsc
.size
);
57 /* Release temporary buffers for decoding */
58 static void s5p_mfc_release_dec_desc_buffer_v5(struct s5p_mfc_ctx
*ctx
)
60 s5p_mfc_release_priv_buf(ctx
->dev
, &ctx
->dsc
);
63 /* Allocate codec buffers */
64 static int s5p_mfc_alloc_codec_buffers_v5(struct s5p_mfc_ctx
*ctx
)
66 struct s5p_mfc_dev
*dev
= ctx
->dev
;
67 unsigned int enc_ref_y_size
= 0;
68 unsigned int enc_ref_c_size
= 0;
69 unsigned int guard_width
, guard_height
;
72 if (ctx
->type
== MFCINST_DECODER
) {
73 mfc_debug(2, "Luma size:%d Chroma size:%d MV size:%d\n",
74 ctx
->luma_size
, ctx
->chroma_size
, ctx
->mv_size
);
75 mfc_debug(2, "Totals bufs: %d\n", ctx
->total_dpb_count
);
76 } else if (ctx
->type
== MFCINST_ENCODER
) {
77 enc_ref_y_size
= ALIGN(ctx
->img_width
, S5P_FIMV_NV12MT_HALIGN
)
78 * ALIGN(ctx
->img_height
, S5P_FIMV_NV12MT_VALIGN
);
79 enc_ref_y_size
= ALIGN(enc_ref_y_size
, S5P_FIMV_NV12MT_SALIGN
);
81 if (ctx
->codec_mode
== S5P_MFC_CODEC_H264_ENC
) {
82 enc_ref_c_size
= ALIGN(ctx
->img_width
,
83 S5P_FIMV_NV12MT_HALIGN
)
84 * ALIGN(ctx
->img_height
>> 1,
85 S5P_FIMV_NV12MT_VALIGN
);
86 enc_ref_c_size
= ALIGN(enc_ref_c_size
,
87 S5P_FIMV_NV12MT_SALIGN
);
89 guard_width
= ALIGN(ctx
->img_width
+ 16,
90 S5P_FIMV_NV12MT_HALIGN
);
91 guard_height
= ALIGN((ctx
->img_height
>> 1) + 4,
92 S5P_FIMV_NV12MT_VALIGN
);
93 enc_ref_c_size
= ALIGN(guard_width
* guard_height
,
94 S5P_FIMV_NV12MT_SALIGN
);
96 mfc_debug(2, "recon luma size: %d chroma size: %d\n",
97 enc_ref_y_size
, enc_ref_c_size
);
101 /* Codecs have different memory requirements */
102 switch (ctx
->codec_mode
) {
103 case S5P_MFC_CODEC_H264_DEC
:
105 ALIGN(S5P_FIMV_DEC_NB_IP_SIZE
+
106 S5P_FIMV_DEC_VERT_NB_MV_SIZE
,
107 S5P_FIMV_DEC_BUF_ALIGN
);
108 ctx
->bank2
.size
= ctx
->total_dpb_count
* ctx
->mv_size
;
110 case S5P_MFC_CODEC_MPEG4_DEC
:
112 ALIGN(S5P_FIMV_DEC_NB_DCAC_SIZE
+
113 S5P_FIMV_DEC_UPNB_MV_SIZE
+
114 S5P_FIMV_DEC_SUB_ANCHOR_MV_SIZE
+
115 S5P_FIMV_DEC_STX_PARSER_SIZE
+
116 S5P_FIMV_DEC_OVERLAP_TRANSFORM_SIZE
,
117 S5P_FIMV_DEC_BUF_ALIGN
);
120 case S5P_MFC_CODEC_VC1RCV_DEC
:
121 case S5P_MFC_CODEC_VC1_DEC
:
123 ALIGN(S5P_FIMV_DEC_OVERLAP_TRANSFORM_SIZE
+
124 S5P_FIMV_DEC_UPNB_MV_SIZE
+
125 S5P_FIMV_DEC_SUB_ANCHOR_MV_SIZE
+
126 S5P_FIMV_DEC_NB_DCAC_SIZE
+
127 3 * S5P_FIMV_DEC_VC1_BITPLANE_SIZE
,
128 S5P_FIMV_DEC_BUF_ALIGN
);
131 case S5P_MFC_CODEC_MPEG2_DEC
:
135 case S5P_MFC_CODEC_H263_DEC
:
137 ALIGN(S5P_FIMV_DEC_OVERLAP_TRANSFORM_SIZE
+
138 S5P_FIMV_DEC_UPNB_MV_SIZE
+
139 S5P_FIMV_DEC_SUB_ANCHOR_MV_SIZE
+
140 S5P_FIMV_DEC_NB_DCAC_SIZE
,
141 S5P_FIMV_DEC_BUF_ALIGN
);
144 case S5P_MFC_CODEC_H264_ENC
:
145 ctx
->bank1
.size
= (enc_ref_y_size
* 2) +
146 S5P_FIMV_ENC_UPMV_SIZE
+
147 S5P_FIMV_ENC_COLFLG_SIZE
+
148 S5P_FIMV_ENC_INTRAMD_SIZE
+
149 S5P_FIMV_ENC_NBORINFO_SIZE
;
150 ctx
->bank2
.size
= (enc_ref_y_size
* 2) +
151 (enc_ref_c_size
* 4) +
152 S5P_FIMV_ENC_INTRAPRED_SIZE
;
154 case S5P_MFC_CODEC_MPEG4_ENC
:
155 ctx
->bank1
.size
= (enc_ref_y_size
* 2) +
156 S5P_FIMV_ENC_UPMV_SIZE
+
157 S5P_FIMV_ENC_COLFLG_SIZE
+
158 S5P_FIMV_ENC_ACDCCOEF_SIZE
;
159 ctx
->bank2
.size
= (enc_ref_y_size
* 2) +
160 (enc_ref_c_size
* 4);
162 case S5P_MFC_CODEC_H263_ENC
:
163 ctx
->bank1
.size
= (enc_ref_y_size
* 2) +
164 S5P_FIMV_ENC_UPMV_SIZE
+
165 S5P_FIMV_ENC_ACDCCOEF_SIZE
;
166 ctx
->bank2
.size
= (enc_ref_y_size
* 2) +
167 (enc_ref_c_size
* 4);
172 /* Allocate only if memory from bank 1 is necessary */
173 if (ctx
->bank1
.size
> 0) {
175 ret
= s5p_mfc_alloc_priv_buf(dev
, BANK_L_CTX
, &ctx
->bank1
);
177 mfc_err("Failed to allocate Bank1 temporary buffer\n");
180 BUG_ON(ctx
->bank1
.dma
& ((1 << MFC_BANK1_ALIGN_ORDER
) - 1));
182 /* Allocate only if memory from bank 2 is necessary */
183 if (ctx
->bank2
.size
> 0) {
184 ret
= s5p_mfc_alloc_priv_buf(dev
, BANK_R_CTX
, &ctx
->bank2
);
186 mfc_err("Failed to allocate Bank2 temporary buffer\n");
187 s5p_mfc_release_priv_buf(ctx
->dev
, &ctx
->bank1
);
190 BUG_ON(ctx
->bank2
.dma
& ((1 << MFC_BANK2_ALIGN_ORDER
) - 1));
195 /* Release buffers allocated for codec */
196 static void s5p_mfc_release_codec_buffers_v5(struct s5p_mfc_ctx
*ctx
)
198 s5p_mfc_release_priv_buf(ctx
->dev
, &ctx
->bank1
);
199 s5p_mfc_release_priv_buf(ctx
->dev
, &ctx
->bank2
);
202 /* Allocate memory for instance data buffer */
203 static int s5p_mfc_alloc_instance_buffer_v5(struct s5p_mfc_ctx
*ctx
)
205 struct s5p_mfc_dev
*dev
= ctx
->dev
;
206 struct s5p_mfc_buf_size_v5
*buf_size
= dev
->variant
->buf_size
->priv
;
209 if (ctx
->codec_mode
== S5P_MFC_CODEC_H264_DEC
||
210 ctx
->codec_mode
== S5P_MFC_CODEC_H264_ENC
)
211 ctx
->ctx
.size
= buf_size
->h264_ctx
;
213 ctx
->ctx
.size
= buf_size
->non_h264_ctx
;
215 ret
= s5p_mfc_alloc_priv_buf(dev
, BANK_L_CTX
, &ctx
->ctx
);
217 mfc_err("Failed to allocate instance buffer\n");
220 ctx
->ctx
.ofs
= OFFSETA(ctx
->ctx
.dma
);
222 /* Zero content of the allocated memory */
223 memset(ctx
->ctx
.virt
, 0, ctx
->ctx
.size
);
226 /* Initialize shared memory */
227 ctx
->shm
.size
= buf_size
->shm
;
228 ret
= s5p_mfc_alloc_priv_buf(dev
, BANK_L_CTX
, &ctx
->shm
);
230 mfc_err("Failed to allocate shared memory buffer\n");
231 s5p_mfc_release_priv_buf(dev
, &ctx
->ctx
);
235 /* shared memory offset only keeps the offset from base (port a) */
236 ctx
->shm
.ofs
= ctx
->shm
.dma
- dev
->dma_base
[BANK_L_CTX
];
237 BUG_ON(ctx
->shm
.ofs
& ((1 << MFC_BANK1_ALIGN_ORDER
) - 1));
239 memset(ctx
->shm
.virt
, 0, buf_size
->shm
);
244 /* Release instance buffer */
245 static void s5p_mfc_release_instance_buffer_v5(struct s5p_mfc_ctx
*ctx
)
247 s5p_mfc_release_priv_buf(ctx
->dev
, &ctx
->ctx
);
248 s5p_mfc_release_priv_buf(ctx
->dev
, &ctx
->shm
);
251 static int s5p_mfc_alloc_dev_context_buffer_v5(struct s5p_mfc_dev
*dev
)
258 static void s5p_mfc_release_dev_context_buffer_v5(struct s5p_mfc_dev
*dev
)
263 static void s5p_mfc_write_info_v5(struct s5p_mfc_ctx
*ctx
, unsigned int data
,
266 *(u32
*)(ctx
->shm
.virt
+ ofs
) = data
;
270 static unsigned int s5p_mfc_read_info_v5(struct s5p_mfc_ctx
*ctx
,
274 return *(u32
*)(ctx
->shm
.virt
+ ofs
);
277 static void s5p_mfc_dec_calc_dpb_size_v5(struct s5p_mfc_ctx
*ctx
)
279 unsigned int guard_width
, guard_height
;
281 ctx
->buf_width
= ALIGN(ctx
->img_width
, S5P_FIMV_NV12MT_HALIGN
);
282 ctx
->buf_height
= ALIGN(ctx
->img_height
, S5P_FIMV_NV12MT_VALIGN
);
284 "SEQ Done: Movie dimensions %dx%d, buffer dimensions: %dx%d\n",
285 ctx
->img_width
, ctx
->img_height
, ctx
->buf_width
,
288 if (ctx
->codec_mode
== S5P_MFC_CODEC_H264_DEC
) {
289 ctx
->luma_size
= ALIGN(ctx
->buf_width
* ctx
->buf_height
,
290 S5P_FIMV_DEC_BUF_ALIGN
);
291 ctx
->chroma_size
= ALIGN(ctx
->buf_width
*
292 ALIGN((ctx
->img_height
>> 1),
293 S5P_FIMV_NV12MT_VALIGN
),
294 S5P_FIMV_DEC_BUF_ALIGN
);
295 ctx
->mv_size
= ALIGN(ctx
->buf_width
*
296 ALIGN((ctx
->buf_height
>> 2),
297 S5P_FIMV_NV12MT_VALIGN
),
298 S5P_FIMV_DEC_BUF_ALIGN
);
301 ALIGN(ctx
->img_width
+ 24, S5P_FIMV_NV12MT_HALIGN
);
303 ALIGN(ctx
->img_height
+ 16, S5P_FIMV_NV12MT_VALIGN
);
304 ctx
->luma_size
= ALIGN(guard_width
* guard_height
,
305 S5P_FIMV_DEC_BUF_ALIGN
);
308 ALIGN(ctx
->img_width
+ 16, S5P_FIMV_NV12MT_HALIGN
);
310 ALIGN((ctx
->img_height
>> 1) + 4,
311 S5P_FIMV_NV12MT_VALIGN
);
312 ctx
->chroma_size
= ALIGN(guard_width
* guard_height
,
313 S5P_FIMV_DEC_BUF_ALIGN
);
319 static void s5p_mfc_enc_calc_src_size_v5(struct s5p_mfc_ctx
*ctx
)
321 if (ctx
->src_fmt
->fourcc
== V4L2_PIX_FMT_NV12M
) {
322 ctx
->buf_width
= ALIGN(ctx
->img_width
, S5P_FIMV_NV12M_HALIGN
);
324 ctx
->luma_size
= ALIGN(ctx
->img_width
, S5P_FIMV_NV12M_HALIGN
)
325 * ALIGN(ctx
->img_height
, S5P_FIMV_NV12M_LVALIGN
);
326 ctx
->chroma_size
= ALIGN(ctx
->img_width
, S5P_FIMV_NV12M_HALIGN
)
327 * ALIGN((ctx
->img_height
>> 1), S5P_FIMV_NV12M_CVALIGN
);
329 ctx
->luma_size
= ALIGN(ctx
->luma_size
, S5P_FIMV_NV12M_SALIGN
);
331 ALIGN(ctx
->chroma_size
, S5P_FIMV_NV12M_SALIGN
);
332 } else if (ctx
->src_fmt
->fourcc
== V4L2_PIX_FMT_NV12MT
) {
333 ctx
->buf_width
= ALIGN(ctx
->img_width
, S5P_FIMV_NV12MT_HALIGN
);
335 ctx
->luma_size
= ALIGN(ctx
->img_width
, S5P_FIMV_NV12MT_HALIGN
)
336 * ALIGN(ctx
->img_height
, S5P_FIMV_NV12MT_VALIGN
);
338 ALIGN(ctx
->img_width
, S5P_FIMV_NV12MT_HALIGN
)
339 * ALIGN((ctx
->img_height
>> 1), S5P_FIMV_NV12MT_VALIGN
);
341 ctx
->luma_size
= ALIGN(ctx
->luma_size
, S5P_FIMV_NV12MT_SALIGN
);
343 ALIGN(ctx
->chroma_size
, S5P_FIMV_NV12MT_SALIGN
);
347 /* Set registers for decoding temporary buffers */
348 static void s5p_mfc_set_dec_desc_buffer(struct s5p_mfc_ctx
*ctx
)
350 struct s5p_mfc_dev
*dev
= ctx
->dev
;
351 struct s5p_mfc_buf_size_v5
*buf_size
= dev
->variant
->buf_size
->priv
;
353 mfc_write(dev
, OFFSETA(ctx
->dsc
.dma
), S5P_FIMV_SI_CH0_DESC_ADR
);
354 mfc_write(dev
, buf_size
->dsc
, S5P_FIMV_SI_CH0_DESC_SIZE
);
357 /* Set registers for shared buffer */
358 static void s5p_mfc_set_shared_buffer(struct s5p_mfc_ctx
*ctx
)
360 struct s5p_mfc_dev
*dev
= ctx
->dev
;
361 mfc_write(dev
, ctx
->shm
.ofs
, S5P_FIMV_SI_CH0_HOST_WR_ADR
);
364 /* Set registers for decoding stream buffer */
365 static int s5p_mfc_set_dec_stream_buffer_v5(struct s5p_mfc_ctx
*ctx
,
366 int buf_addr
, unsigned int start_num_byte
,
367 unsigned int buf_size
)
369 struct s5p_mfc_dev
*dev
= ctx
->dev
;
371 mfc_write(dev
, OFFSETA(buf_addr
), S5P_FIMV_SI_CH0_SB_ST_ADR
);
372 mfc_write(dev
, ctx
->dec_src_buf_size
, S5P_FIMV_SI_CH0_CPB_SIZE
);
373 mfc_write(dev
, buf_size
, S5P_FIMV_SI_CH0_SB_FRM_SIZE
);
374 s5p_mfc_write_info_v5(ctx
, start_num_byte
, START_BYTE_NUM
);
378 /* Set decoding frame buffer */
379 static int s5p_mfc_set_dec_frame_buffer_v5(struct s5p_mfc_ctx
*ctx
)
381 unsigned int frame_size_lu
, i
;
382 unsigned int frame_size_ch
, frame_size_mv
;
383 struct s5p_mfc_dev
*dev
= ctx
->dev
;
385 size_t buf_addr1
, buf_addr2
;
386 int buf_size1
, buf_size2
;
388 buf_addr1
= ctx
->bank1
.dma
;
389 buf_size1
= ctx
->bank1
.size
;
390 buf_addr2
= ctx
->bank2
.dma
;
391 buf_size2
= ctx
->bank2
.size
;
392 dpb
= mfc_read(dev
, S5P_FIMV_SI_CH0_DPB_CONF_CTRL
) &
393 ~S5P_FIMV_DPB_COUNT_MASK
;
394 mfc_write(dev
, ctx
->total_dpb_count
| dpb
,
395 S5P_FIMV_SI_CH0_DPB_CONF_CTRL
);
396 s5p_mfc_set_shared_buffer(ctx
);
397 switch (ctx
->codec_mode
) {
398 case S5P_MFC_CODEC_H264_DEC
:
399 mfc_write(dev
, OFFSETA(buf_addr1
),
400 S5P_FIMV_H264_VERT_NB_MV_ADR
);
401 buf_addr1
+= S5P_FIMV_DEC_VERT_NB_MV_SIZE
;
402 buf_size1
-= S5P_FIMV_DEC_VERT_NB_MV_SIZE
;
403 mfc_write(dev
, OFFSETA(buf_addr1
), S5P_FIMV_H264_NB_IP_ADR
);
404 buf_addr1
+= S5P_FIMV_DEC_NB_IP_SIZE
;
405 buf_size1
-= S5P_FIMV_DEC_NB_IP_SIZE
;
407 case S5P_MFC_CODEC_MPEG4_DEC
:
408 mfc_write(dev
, OFFSETA(buf_addr1
), S5P_FIMV_MPEG4_NB_DCAC_ADR
);
409 buf_addr1
+= S5P_FIMV_DEC_NB_DCAC_SIZE
;
410 buf_size1
-= S5P_FIMV_DEC_NB_DCAC_SIZE
;
411 mfc_write(dev
, OFFSETA(buf_addr1
), S5P_FIMV_MPEG4_UP_NB_MV_ADR
);
412 buf_addr1
+= S5P_FIMV_DEC_UPNB_MV_SIZE
;
413 buf_size1
-= S5P_FIMV_DEC_UPNB_MV_SIZE
;
414 mfc_write(dev
, OFFSETA(buf_addr1
), S5P_FIMV_MPEG4_SA_MV_ADR
);
415 buf_addr1
+= S5P_FIMV_DEC_SUB_ANCHOR_MV_SIZE
;
416 buf_size1
-= S5P_FIMV_DEC_SUB_ANCHOR_MV_SIZE
;
417 mfc_write(dev
, OFFSETA(buf_addr1
), S5P_FIMV_MPEG4_SP_ADR
);
418 buf_addr1
+= S5P_FIMV_DEC_STX_PARSER_SIZE
;
419 buf_size1
-= S5P_FIMV_DEC_STX_PARSER_SIZE
;
420 mfc_write(dev
, OFFSETA(buf_addr1
), S5P_FIMV_MPEG4_OT_LINE_ADR
);
421 buf_addr1
+= S5P_FIMV_DEC_OVERLAP_TRANSFORM_SIZE
;
422 buf_size1
-= S5P_FIMV_DEC_OVERLAP_TRANSFORM_SIZE
;
424 case S5P_MFC_CODEC_H263_DEC
:
425 mfc_write(dev
, OFFSETA(buf_addr1
), S5P_FIMV_H263_OT_LINE_ADR
);
426 buf_addr1
+= S5P_FIMV_DEC_OVERLAP_TRANSFORM_SIZE
;
427 buf_size1
-= S5P_FIMV_DEC_OVERLAP_TRANSFORM_SIZE
;
428 mfc_write(dev
, OFFSETA(buf_addr1
), S5P_FIMV_H263_UP_NB_MV_ADR
);
429 buf_addr1
+= S5P_FIMV_DEC_UPNB_MV_SIZE
;
430 buf_size1
-= S5P_FIMV_DEC_UPNB_MV_SIZE
;
431 mfc_write(dev
, OFFSETA(buf_addr1
), S5P_FIMV_H263_SA_MV_ADR
);
432 buf_addr1
+= S5P_FIMV_DEC_SUB_ANCHOR_MV_SIZE
;
433 buf_size1
-= S5P_FIMV_DEC_SUB_ANCHOR_MV_SIZE
;
434 mfc_write(dev
, OFFSETA(buf_addr1
), S5P_FIMV_H263_NB_DCAC_ADR
);
435 buf_addr1
+= S5P_FIMV_DEC_NB_DCAC_SIZE
;
436 buf_size1
-= S5P_FIMV_DEC_NB_DCAC_SIZE
;
438 case S5P_MFC_CODEC_VC1_DEC
:
439 case S5P_MFC_CODEC_VC1RCV_DEC
:
440 mfc_write(dev
, OFFSETA(buf_addr1
), S5P_FIMV_VC1_NB_DCAC_ADR
);
441 buf_addr1
+= S5P_FIMV_DEC_NB_DCAC_SIZE
;
442 buf_size1
-= S5P_FIMV_DEC_NB_DCAC_SIZE
;
443 mfc_write(dev
, OFFSETA(buf_addr1
), S5P_FIMV_VC1_OT_LINE_ADR
);
444 buf_addr1
+= S5P_FIMV_DEC_OVERLAP_TRANSFORM_SIZE
;
445 buf_size1
-= S5P_FIMV_DEC_OVERLAP_TRANSFORM_SIZE
;
446 mfc_write(dev
, OFFSETA(buf_addr1
), S5P_FIMV_VC1_UP_NB_MV_ADR
);
447 buf_addr1
+= S5P_FIMV_DEC_UPNB_MV_SIZE
;
448 buf_size1
-= S5P_FIMV_DEC_UPNB_MV_SIZE
;
449 mfc_write(dev
, OFFSETA(buf_addr1
), S5P_FIMV_VC1_SA_MV_ADR
);
450 buf_addr1
+= S5P_FIMV_DEC_SUB_ANCHOR_MV_SIZE
;
451 buf_size1
-= S5P_FIMV_DEC_SUB_ANCHOR_MV_SIZE
;
452 mfc_write(dev
, OFFSETA(buf_addr1
), S5P_FIMV_VC1_BITPLANE3_ADR
);
453 buf_addr1
+= S5P_FIMV_DEC_VC1_BITPLANE_SIZE
;
454 buf_size1
-= S5P_FIMV_DEC_VC1_BITPLANE_SIZE
;
455 mfc_write(dev
, OFFSETA(buf_addr1
), S5P_FIMV_VC1_BITPLANE2_ADR
);
456 buf_addr1
+= S5P_FIMV_DEC_VC1_BITPLANE_SIZE
;
457 buf_size1
-= S5P_FIMV_DEC_VC1_BITPLANE_SIZE
;
458 mfc_write(dev
, OFFSETA(buf_addr1
), S5P_FIMV_VC1_BITPLANE1_ADR
);
459 buf_addr1
+= S5P_FIMV_DEC_VC1_BITPLANE_SIZE
;
460 buf_size1
-= S5P_FIMV_DEC_VC1_BITPLANE_SIZE
;
462 case S5P_MFC_CODEC_MPEG2_DEC
:
465 mfc_err("Unknown codec for decoding (%x)\n",
469 frame_size_lu
= ctx
->luma_size
;
470 frame_size_ch
= ctx
->chroma_size
;
471 frame_size_mv
= ctx
->mv_size
;
472 mfc_debug(2, "Frm size: %d ch: %d mv: %d\n", frame_size_lu
, frame_size_ch
,
474 for (i
= 0; i
< ctx
->total_dpb_count
; i
++) {
476 mfc_debug(2, "Luma %d: %zx\n", i
,
477 ctx
->dst_bufs
[i
].cookie
.raw
.luma
);
478 mfc_write(dev
, OFFSETB(ctx
->dst_bufs
[i
].cookie
.raw
.luma
),
479 S5P_FIMV_DEC_LUMA_ADR
+ i
* 4);
480 mfc_debug(2, "\tChroma %d: %zx\n", i
,
481 ctx
->dst_bufs
[i
].cookie
.raw
.chroma
);
482 mfc_write(dev
, OFFSETA(ctx
->dst_bufs
[i
].cookie
.raw
.chroma
),
483 S5P_FIMV_DEC_CHROMA_ADR
+ i
* 4);
484 if (ctx
->codec_mode
== S5P_MFC_CODEC_H264_DEC
) {
485 mfc_debug(2, "\tBuf2: %zx, size: %d\n",
486 buf_addr2
, buf_size2
);
487 mfc_write(dev
, OFFSETB(buf_addr2
),
488 S5P_FIMV_H264_MV_ADR
+ i
* 4);
489 buf_addr2
+= frame_size_mv
;
490 buf_size2
-= frame_size_mv
;
493 mfc_debug(2, "Buf1: %zu, buf_size1: %d\n", buf_addr1
, buf_size1
);
494 mfc_debug(2, "Buf 1/2 size after: %d/%d (frames %d)\n",
495 buf_size1
, buf_size2
, ctx
->total_dpb_count
);
496 if (buf_size1
< 0 || buf_size2
< 0) {
497 mfc_debug(2, "Not enough memory has been allocated\n");
500 s5p_mfc_write_info_v5(ctx
, frame_size_lu
, ALLOC_LUMA_DPB_SIZE
);
501 s5p_mfc_write_info_v5(ctx
, frame_size_ch
, ALLOC_CHROMA_DPB_SIZE
);
502 if (ctx
->codec_mode
== S5P_MFC_CODEC_H264_DEC
)
503 s5p_mfc_write_info_v5(ctx
, frame_size_mv
, ALLOC_MV_SIZE
);
504 mfc_write(dev
, ((S5P_FIMV_CH_INIT_BUFS
& S5P_FIMV_CH_MASK
)
505 << S5P_FIMV_CH_SHIFT
) | (ctx
->inst_no
),
506 S5P_FIMV_SI_CH0_INST_ID
);
510 /* Set registers for encoding stream buffer */
511 static int s5p_mfc_set_enc_stream_buffer_v5(struct s5p_mfc_ctx
*ctx
,
512 unsigned long addr
, unsigned int size
)
514 struct s5p_mfc_dev
*dev
= ctx
->dev
;
516 mfc_write(dev
, OFFSETA(addr
), S5P_FIMV_ENC_SI_CH0_SB_ADR
);
517 mfc_write(dev
, size
, S5P_FIMV_ENC_SI_CH0_SB_SIZE
);
521 static void s5p_mfc_set_enc_frame_buffer_v5(struct s5p_mfc_ctx
*ctx
,
522 unsigned long y_addr
, unsigned long c_addr
)
524 struct s5p_mfc_dev
*dev
= ctx
->dev
;
526 mfc_write(dev
, OFFSETB(y_addr
), S5P_FIMV_ENC_SI_CH0_CUR_Y_ADR
);
527 mfc_write(dev
, OFFSETB(c_addr
), S5P_FIMV_ENC_SI_CH0_CUR_C_ADR
);
530 static void s5p_mfc_get_enc_frame_buffer_v5(struct s5p_mfc_ctx
*ctx
,
531 unsigned long *y_addr
, unsigned long *c_addr
)
533 struct s5p_mfc_dev
*dev
= ctx
->dev
;
535 *y_addr
= dev
->dma_base
[BANK_R_CTX
] +
536 (mfc_read(dev
, S5P_FIMV_ENCODED_Y_ADDR
) << MFC_OFFSET_SHIFT
);
537 *c_addr
= dev
->dma_base
[BANK_R_CTX
] +
538 (mfc_read(dev
, S5P_FIMV_ENCODED_C_ADDR
) << MFC_OFFSET_SHIFT
);
541 /* Set encoding ref & codec buffer */
542 static int s5p_mfc_set_enc_ref_buffer_v5(struct s5p_mfc_ctx
*ctx
)
544 struct s5p_mfc_dev
*dev
= ctx
->dev
;
545 size_t buf_addr1
, buf_addr2
;
546 size_t buf_size1
, buf_size2
;
547 unsigned int enc_ref_y_size
, enc_ref_c_size
;
548 unsigned int guard_width
, guard_height
;
551 buf_addr1
= ctx
->bank1
.dma
;
552 buf_size1
= ctx
->bank1
.size
;
553 buf_addr2
= ctx
->bank2
.dma
;
554 buf_size2
= ctx
->bank2
.size
;
555 enc_ref_y_size
= ALIGN(ctx
->img_width
, S5P_FIMV_NV12MT_HALIGN
)
556 * ALIGN(ctx
->img_height
, S5P_FIMV_NV12MT_VALIGN
);
557 enc_ref_y_size
= ALIGN(enc_ref_y_size
, S5P_FIMV_NV12MT_SALIGN
);
558 if (ctx
->codec_mode
== S5P_MFC_CODEC_H264_ENC
) {
559 enc_ref_c_size
= ALIGN(ctx
->img_width
, S5P_FIMV_NV12MT_HALIGN
)
560 * ALIGN((ctx
->img_height
>> 1), S5P_FIMV_NV12MT_VALIGN
);
561 enc_ref_c_size
= ALIGN(enc_ref_c_size
, S5P_FIMV_NV12MT_SALIGN
);
563 guard_width
= ALIGN(ctx
->img_width
+ 16,
564 S5P_FIMV_NV12MT_HALIGN
);
565 guard_height
= ALIGN((ctx
->img_height
>> 1) + 4,
566 S5P_FIMV_NV12MT_VALIGN
);
567 enc_ref_c_size
= ALIGN(guard_width
* guard_height
,
568 S5P_FIMV_NV12MT_SALIGN
);
570 mfc_debug(2, "buf_size1: %zu, buf_size2: %zu\n", buf_size1
, buf_size2
);
571 switch (ctx
->codec_mode
) {
572 case S5P_MFC_CODEC_H264_ENC
:
573 for (i
= 0; i
< 2; i
++) {
574 mfc_write(dev
, OFFSETA(buf_addr1
),
575 S5P_FIMV_ENC_REF0_LUMA_ADR
+ (4 * i
));
576 buf_addr1
+= enc_ref_y_size
;
577 buf_size1
-= enc_ref_y_size
;
579 mfc_write(dev
, OFFSETB(buf_addr2
),
580 S5P_FIMV_ENC_REF2_LUMA_ADR
+ (4 * i
));
581 buf_addr2
+= enc_ref_y_size
;
582 buf_size2
-= enc_ref_y_size
;
584 for (i
= 0; i
< 4; i
++) {
585 mfc_write(dev
, OFFSETB(buf_addr2
),
586 S5P_FIMV_ENC_REF0_CHROMA_ADR
+ (4 * i
));
587 buf_addr2
+= enc_ref_c_size
;
588 buf_size2
-= enc_ref_c_size
;
590 mfc_write(dev
, OFFSETA(buf_addr1
), S5P_FIMV_H264_UP_MV_ADR
);
591 buf_addr1
+= S5P_FIMV_ENC_UPMV_SIZE
;
592 buf_size1
-= S5P_FIMV_ENC_UPMV_SIZE
;
593 mfc_write(dev
, OFFSETA(buf_addr1
),
594 S5P_FIMV_H264_COZERO_FLAG_ADR
);
595 buf_addr1
+= S5P_FIMV_ENC_COLFLG_SIZE
;
596 buf_size1
-= S5P_FIMV_ENC_COLFLG_SIZE
;
597 mfc_write(dev
, OFFSETA(buf_addr1
),
598 S5P_FIMV_H264_UP_INTRA_MD_ADR
);
599 buf_addr1
+= S5P_FIMV_ENC_INTRAMD_SIZE
;
600 buf_size1
-= S5P_FIMV_ENC_INTRAMD_SIZE
;
601 mfc_write(dev
, OFFSETB(buf_addr2
),
602 S5P_FIMV_H264_UP_INTRA_PRED_ADR
);
603 buf_addr2
+= S5P_FIMV_ENC_INTRAPRED_SIZE
;
604 buf_size2
-= S5P_FIMV_ENC_INTRAPRED_SIZE
;
605 mfc_write(dev
, OFFSETA(buf_addr1
),
606 S5P_FIMV_H264_NBOR_INFO_ADR
);
607 buf_addr1
+= S5P_FIMV_ENC_NBORINFO_SIZE
;
608 buf_size1
-= S5P_FIMV_ENC_NBORINFO_SIZE
;
609 mfc_debug(2, "buf_size1: %zu, buf_size2: %zu\n",
610 buf_size1
, buf_size2
);
612 case S5P_MFC_CODEC_MPEG4_ENC
:
613 for (i
= 0; i
< 2; i
++) {
614 mfc_write(dev
, OFFSETA(buf_addr1
),
615 S5P_FIMV_ENC_REF0_LUMA_ADR
+ (4 * i
));
616 buf_addr1
+= enc_ref_y_size
;
617 buf_size1
-= enc_ref_y_size
;
618 mfc_write(dev
, OFFSETB(buf_addr2
),
619 S5P_FIMV_ENC_REF2_LUMA_ADR
+ (4 * i
));
620 buf_addr2
+= enc_ref_y_size
;
621 buf_size2
-= enc_ref_y_size
;
623 for (i
= 0; i
< 4; i
++) {
624 mfc_write(dev
, OFFSETB(buf_addr2
),
625 S5P_FIMV_ENC_REF0_CHROMA_ADR
+ (4 * i
));
626 buf_addr2
+= enc_ref_c_size
;
627 buf_size2
-= enc_ref_c_size
;
629 mfc_write(dev
, OFFSETA(buf_addr1
), S5P_FIMV_MPEG4_UP_MV_ADR
);
630 buf_addr1
+= S5P_FIMV_ENC_UPMV_SIZE
;
631 buf_size1
-= S5P_FIMV_ENC_UPMV_SIZE
;
632 mfc_write(dev
, OFFSETA(buf_addr1
),
633 S5P_FIMV_MPEG4_COZERO_FLAG_ADR
);
634 buf_addr1
+= S5P_FIMV_ENC_COLFLG_SIZE
;
635 buf_size1
-= S5P_FIMV_ENC_COLFLG_SIZE
;
636 mfc_write(dev
, OFFSETA(buf_addr1
),
637 S5P_FIMV_MPEG4_ACDC_COEF_ADR
);
638 buf_addr1
+= S5P_FIMV_ENC_ACDCCOEF_SIZE
;
639 buf_size1
-= S5P_FIMV_ENC_ACDCCOEF_SIZE
;
640 mfc_debug(2, "buf_size1: %zu, buf_size2: %zu\n",
641 buf_size1
, buf_size2
);
643 case S5P_MFC_CODEC_H263_ENC
:
644 for (i
= 0; i
< 2; i
++) {
645 mfc_write(dev
, OFFSETA(buf_addr1
),
646 S5P_FIMV_ENC_REF0_LUMA_ADR
+ (4 * i
));
647 buf_addr1
+= enc_ref_y_size
;
648 buf_size1
-= enc_ref_y_size
;
649 mfc_write(dev
, OFFSETB(buf_addr2
),
650 S5P_FIMV_ENC_REF2_LUMA_ADR
+ (4 * i
));
651 buf_addr2
+= enc_ref_y_size
;
652 buf_size2
-= enc_ref_y_size
;
654 for (i
= 0; i
< 4; i
++) {
655 mfc_write(dev
, OFFSETB(buf_addr2
),
656 S5P_FIMV_ENC_REF0_CHROMA_ADR
+ (4 * i
));
657 buf_addr2
+= enc_ref_c_size
;
658 buf_size2
-= enc_ref_c_size
;
660 mfc_write(dev
, OFFSETA(buf_addr1
), S5P_FIMV_H263_UP_MV_ADR
);
661 buf_addr1
+= S5P_FIMV_ENC_UPMV_SIZE
;
662 buf_size1
-= S5P_FIMV_ENC_UPMV_SIZE
;
663 mfc_write(dev
, OFFSETA(buf_addr1
), S5P_FIMV_H263_ACDC_COEF_ADR
);
664 buf_addr1
+= S5P_FIMV_ENC_ACDCCOEF_SIZE
;
665 buf_size1
-= S5P_FIMV_ENC_ACDCCOEF_SIZE
;
666 mfc_debug(2, "buf_size1: %zu, buf_size2: %zu\n",
667 buf_size1
, buf_size2
);
670 mfc_err("Unknown codec set for encoding: %d\n",
677 static int s5p_mfc_set_enc_params(struct s5p_mfc_ctx
*ctx
)
679 struct s5p_mfc_dev
*dev
= ctx
->dev
;
680 struct s5p_mfc_enc_params
*p
= &ctx
->enc_params
;
685 mfc_write(dev
, ctx
->img_width
, S5P_FIMV_ENC_HSIZE_PX
);
687 mfc_write(dev
, ctx
->img_height
, S5P_FIMV_ENC_VSIZE_PX
);
688 /* pictype : enable, IDR period */
689 reg
= mfc_read(dev
, S5P_FIMV_ENC_PIC_TYPE_CTRL
);
693 mfc_write(dev
, reg
, S5P_FIMV_ENC_PIC_TYPE_CTRL
);
694 mfc_write(dev
, 0, S5P_FIMV_ENC_B_RECON_WRITE_ON
);
695 /* multi-slice control */
696 /* multi-slice MB number or bit size */
697 mfc_write(dev
, p
->slice_mode
, S5P_FIMV_ENC_MSLICE_CTRL
);
698 if (p
->slice_mode
== V4L2_MPEG_VIDEO_MULTI_SICE_MODE_MAX_MB
) {
699 mfc_write(dev
, p
->slice_mb
, S5P_FIMV_ENC_MSLICE_MB
);
700 } else if (p
->slice_mode
== V4L2_MPEG_VIDEO_MULTI_SICE_MODE_MAX_BYTES
) {
701 mfc_write(dev
, p
->slice_bit
, S5P_FIMV_ENC_MSLICE_BIT
);
703 mfc_write(dev
, 0, S5P_FIMV_ENC_MSLICE_MB
);
704 mfc_write(dev
, 0, S5P_FIMV_ENC_MSLICE_BIT
);
706 /* cyclic intra refresh */
707 mfc_write(dev
, p
->intra_refresh_mb
, S5P_FIMV_ENC_CIR_CTRL
);
708 /* memory structure cur. frame */
709 if (ctx
->src_fmt
->fourcc
== V4L2_PIX_FMT_NV12M
)
710 mfc_write(dev
, 0, S5P_FIMV_ENC_MAP_FOR_CUR
);
711 else if (ctx
->src_fmt
->fourcc
== V4L2_PIX_FMT_NV12MT
)
712 mfc_write(dev
, 3, S5P_FIMV_ENC_MAP_FOR_CUR
);
713 /* padding control & value */
714 reg
= mfc_read(dev
, S5P_FIMV_ENC_PADDING_CTRL
);
719 reg
&= ~(0xFF << 16);
720 reg
|= (p
->pad_cr
<< 16);
723 reg
|= (p
->pad_cb
<< 8);
726 reg
|= (p
->pad_luma
);
728 /** disable & all value clear */
731 mfc_write(dev
, reg
, S5P_FIMV_ENC_PADDING_CTRL
);
732 /* rate control config. */
733 reg
= mfc_read(dev
, S5P_FIMV_ENC_RC_CONFIG
);
734 /** frame-level rate control */
736 reg
|= (p
->rc_frame
<< 9);
737 mfc_write(dev
, reg
, S5P_FIMV_ENC_RC_CONFIG
);
740 mfc_write(dev
, p
->rc_bitrate
,
741 S5P_FIMV_ENC_RC_BIT_RATE
);
743 mfc_write(dev
, 0, S5P_FIMV_ENC_RC_BIT_RATE
);
744 /* reaction coefficient */
746 mfc_write(dev
, p
->rc_reaction_coeff
, S5P_FIMV_ENC_RC_RPARA
);
747 shm
= s5p_mfc_read_info_v5(ctx
, EXT_ENC_CONTROL
);
748 /* seq header ctrl */
750 shm
|= (p
->seq_hdr_mode
<< 3);
751 /* frame skip mode */
753 shm
|= (p
->frame_skip_mode
<< 1);
754 s5p_mfc_write_info_v5(ctx
, shm
, EXT_ENC_CONTROL
);
755 /* fixed target bit */
756 s5p_mfc_write_info_v5(ctx
, p
->fixed_target_bit
, RC_CONTROL_CONFIG
);
760 static int s5p_mfc_set_enc_params_h264(struct s5p_mfc_ctx
*ctx
)
762 struct s5p_mfc_dev
*dev
= ctx
->dev
;
763 struct s5p_mfc_enc_params
*p
= &ctx
->enc_params
;
764 struct s5p_mfc_h264_enc_params
*p_264
= &p
->codec
.h264
;
768 s5p_mfc_set_enc_params(ctx
);
769 /* pictype : number of B */
770 reg
= mfc_read(dev
, S5P_FIMV_ENC_PIC_TYPE_CTRL
);
771 /* num_b_frame - 0 ~ 2 */
773 reg
|= (p
->num_b_frame
<< 16);
774 mfc_write(dev
, reg
, S5P_FIMV_ENC_PIC_TYPE_CTRL
);
775 /* profile & level */
776 reg
= mfc_read(dev
, S5P_FIMV_ENC_PROFILE
);
779 reg
|= (p_264
->level
<< 8);
780 /* profile - 0 ~ 2 */
782 reg
|= p_264
->profile
;
783 mfc_write(dev
, reg
, S5P_FIMV_ENC_PROFILE
);
785 mfc_write(dev
, p_264
->interlace
, S5P_FIMV_ENC_PIC_STRUCT
);
787 if (p_264
->interlace
)
788 mfc_write(dev
, ctx
->img_height
>> 1, S5P_FIMV_ENC_VSIZE_PX
);
789 /* loopfilter ctrl */
790 mfc_write(dev
, p_264
->loop_filter_mode
, S5P_FIMV_ENC_LF_CTRL
);
791 /* loopfilter alpha offset */
792 if (p_264
->loop_filter_alpha
< 0) {
794 reg
|= (0xFF - p_264
->loop_filter_alpha
) + 1;
797 reg
|= (p_264
->loop_filter_alpha
& 0xF);
799 mfc_write(dev
, reg
, S5P_FIMV_ENC_ALPHA_OFF
);
800 /* loopfilter beta offset */
801 if (p_264
->loop_filter_beta
< 0) {
803 reg
|= (0xFF - p_264
->loop_filter_beta
) + 1;
806 reg
|= (p_264
->loop_filter_beta
& 0xF);
808 mfc_write(dev
, reg
, S5P_FIMV_ENC_BETA_OFF
);
809 /* entropy coding mode */
810 if (p_264
->entropy_mode
== V4L2_MPEG_VIDEO_H264_ENTROPY_MODE_CABAC
)
811 mfc_write(dev
, 1, S5P_FIMV_ENC_H264_ENTROPY_MODE
);
813 mfc_write(dev
, 0, S5P_FIMV_ENC_H264_ENTROPY_MODE
);
814 /* number of ref. picture */
815 reg
= mfc_read(dev
, S5P_FIMV_ENC_H264_NUM_OF_REF
);
816 /* num of ref. pictures of P */
818 reg
|= (p_264
->num_ref_pic_4p
<< 5);
819 /* max number of ref. pictures */
821 reg
|= p_264
->max_ref_pic
;
822 mfc_write(dev
, reg
, S5P_FIMV_ENC_H264_NUM_OF_REF
);
823 /* 8x8 transform enable */
824 mfc_write(dev
, p_264
->_8x8_transform
, S5P_FIMV_ENC_H264_TRANS_FLAG
);
825 /* rate control config. */
826 reg
= mfc_read(dev
, S5P_FIMV_ENC_RC_CONFIG
);
827 /* macroblock level rate control */
829 reg
|= (p
->rc_mb
<< 8);
832 reg
|= p_264
->rc_frame_qp
;
833 mfc_write(dev
, reg
, S5P_FIMV_ENC_RC_CONFIG
);
835 if (p
->rc_frame
&& p
->rc_framerate_denom
)
836 mfc_write(dev
, p
->rc_framerate_num
* 1000
837 / p
->rc_framerate_denom
, S5P_FIMV_ENC_RC_FRAME_RATE
);
839 mfc_write(dev
, 0, S5P_FIMV_ENC_RC_FRAME_RATE
);
840 /* max & min value of QP */
841 reg
= mfc_read(dev
, S5P_FIMV_ENC_RC_QBOUND
);
844 reg
|= (p_264
->rc_max_qp
<< 8);
847 reg
|= p_264
->rc_min_qp
;
848 mfc_write(dev
, reg
, S5P_FIMV_ENC_RC_QBOUND
);
849 /* macroblock adaptive scaling features */
851 reg
= mfc_read(dev
, S5P_FIMV_ENC_RC_MB_CTRL
);
854 reg
|= (p_264
->rc_mb_dark
<< 3);
857 reg
|= (p_264
->rc_mb_smooth
<< 2);
860 reg
|= (p_264
->rc_mb_static
<< 1);
861 /* high activity region */
863 reg
|= p_264
->rc_mb_activity
;
864 mfc_write(dev
, reg
, S5P_FIMV_ENC_RC_MB_CTRL
);
866 if (!p
->rc_frame
&& !p
->rc_mb
) {
867 shm
= s5p_mfc_read_info_v5(ctx
, P_B_FRAME_QP
);
869 shm
|= ((p_264
->rc_b_frame_qp
& 0x3F) << 6);
870 shm
|= (p_264
->rc_p_frame_qp
& 0x3F);
871 s5p_mfc_write_info_v5(ctx
, shm
, P_B_FRAME_QP
);
873 /* extended encoder ctrl */
874 shm
= s5p_mfc_read_info_v5(ctx
, EXT_ENC_CONTROL
);
877 shm
|= (p_264
->vui_sar
<< 1);
878 s5p_mfc_write_info_v5(ctx
, shm
, EXT_ENC_CONTROL
);
879 if (p_264
->vui_sar
) {
880 /* aspect ration IDC */
881 shm
= s5p_mfc_read_info_v5(ctx
, SAMPLE_ASPECT_RATIO_IDC
);
883 shm
|= p_264
->vui_sar_idc
;
884 s5p_mfc_write_info_v5(ctx
, shm
, SAMPLE_ASPECT_RATIO_IDC
);
885 if (p_264
->vui_sar_idc
== 0xFF) {
887 shm
= s5p_mfc_read_info_v5(ctx
, EXTENDED_SAR
);
888 shm
&= ~(0xFFFFFFFF);
889 shm
|= p_264
->vui_ext_sar_width
<< 16;
890 shm
|= p_264
->vui_ext_sar_height
;
891 s5p_mfc_write_info_v5(ctx
, shm
, EXTENDED_SAR
);
894 /* intra picture period for H.264 */
895 shm
= s5p_mfc_read_info_v5(ctx
, H264_I_PERIOD
);
898 shm
|= (p_264
->open_gop
<< 16);
900 if (p_264
->open_gop
) {
902 shm
|= p_264
->open_gop_size
;
904 s5p_mfc_write_info_v5(ctx
, shm
, H264_I_PERIOD
);
905 /* extended encoder ctrl */
906 shm
= s5p_mfc_read_info_v5(ctx
, EXT_ENC_CONTROL
);
907 /* vbv buffer size */
908 if (p
->frame_skip_mode
==
909 V4L2_MPEG_MFC51_VIDEO_FRAME_SKIP_MODE_BUF_LIMIT
) {
910 shm
&= ~(0xFFFF << 16);
911 shm
|= (p_264
->cpb_size
<< 16);
913 s5p_mfc_write_info_v5(ctx
, shm
, EXT_ENC_CONTROL
);
917 static int s5p_mfc_set_enc_params_mpeg4(struct s5p_mfc_ctx
*ctx
)
919 struct s5p_mfc_dev
*dev
= ctx
->dev
;
920 struct s5p_mfc_enc_params
*p
= &ctx
->enc_params
;
921 struct s5p_mfc_mpeg4_enc_params
*p_mpeg4
= &p
->codec
.mpeg4
;
924 unsigned int framerate
;
926 s5p_mfc_set_enc_params(ctx
);
927 /* pictype : number of B */
928 reg
= mfc_read(dev
, S5P_FIMV_ENC_PIC_TYPE_CTRL
);
929 /* num_b_frame - 0 ~ 2 */
931 reg
|= (p
->num_b_frame
<< 16);
932 mfc_write(dev
, reg
, S5P_FIMV_ENC_PIC_TYPE_CTRL
);
933 /* profile & level */
934 reg
= mfc_read(dev
, S5P_FIMV_ENC_PROFILE
);
937 reg
|= (p_mpeg4
->level
<< 8);
938 /* profile - 0 ~ 2 */
940 reg
|= p_mpeg4
->profile
;
941 mfc_write(dev
, reg
, S5P_FIMV_ENC_PROFILE
);
943 mfc_write(dev
, p_mpeg4
->quarter_pixel
, S5P_FIMV_ENC_MPEG4_QUART_PXL
);
946 shm
= s5p_mfc_read_info_v5(ctx
, P_B_FRAME_QP
);
948 shm
|= ((p_mpeg4
->rc_b_frame_qp
& 0x3F) << 6);
949 shm
|= (p_mpeg4
->rc_p_frame_qp
& 0x3F);
950 s5p_mfc_write_info_v5(ctx
, shm
, P_B_FRAME_QP
);
954 if (p
->rc_framerate_denom
> 0) {
955 framerate
= p
->rc_framerate_num
* 1000 /
956 p
->rc_framerate_denom
;
957 mfc_write(dev
, framerate
,
958 S5P_FIMV_ENC_RC_FRAME_RATE
);
959 shm
= s5p_mfc_read_info_v5(ctx
, RC_VOP_TIMING
);
960 shm
&= ~(0xFFFFFFFF);
962 shm
|= ((p
->rc_framerate_num
& 0x7FFF) << 16);
963 shm
|= (p
->rc_framerate_denom
& 0xFFFF);
964 s5p_mfc_write_info_v5(ctx
, shm
, RC_VOP_TIMING
);
967 mfc_write(dev
, 0, S5P_FIMV_ENC_RC_FRAME_RATE
);
969 /* rate control config. */
970 reg
= mfc_read(dev
, S5P_FIMV_ENC_RC_CONFIG
);
973 reg
|= p_mpeg4
->rc_frame_qp
;
974 mfc_write(dev
, reg
, S5P_FIMV_ENC_RC_CONFIG
);
975 /* max & min value of QP */
976 reg
= mfc_read(dev
, S5P_FIMV_ENC_RC_QBOUND
);
979 reg
|= (p_mpeg4
->rc_max_qp
<< 8);
982 reg
|= p_mpeg4
->rc_min_qp
;
983 mfc_write(dev
, reg
, S5P_FIMV_ENC_RC_QBOUND
);
984 /* extended encoder ctrl */
985 shm
= s5p_mfc_read_info_v5(ctx
, EXT_ENC_CONTROL
);
986 /* vbv buffer size */
987 if (p
->frame_skip_mode
==
988 V4L2_MPEG_MFC51_VIDEO_FRAME_SKIP_MODE_BUF_LIMIT
) {
989 shm
&= ~(0xFFFF << 16);
990 shm
|= (p
->vbv_size
<< 16);
992 s5p_mfc_write_info_v5(ctx
, shm
, EXT_ENC_CONTROL
);
996 static int s5p_mfc_set_enc_params_h263(struct s5p_mfc_ctx
*ctx
)
998 struct s5p_mfc_dev
*dev
= ctx
->dev
;
999 struct s5p_mfc_enc_params
*p
= &ctx
->enc_params
;
1000 struct s5p_mfc_mpeg4_enc_params
*p_h263
= &p
->codec
.mpeg4
;
1004 s5p_mfc_set_enc_params(ctx
);
1007 shm
= s5p_mfc_read_info_v5(ctx
, P_B_FRAME_QP
);
1009 shm
|= (p_h263
->rc_p_frame_qp
& 0x3F);
1010 s5p_mfc_write_info_v5(ctx
, shm
, P_B_FRAME_QP
);
1013 if (p
->rc_frame
&& p
->rc_framerate_denom
)
1014 mfc_write(dev
, p
->rc_framerate_num
* 1000
1015 / p
->rc_framerate_denom
, S5P_FIMV_ENC_RC_FRAME_RATE
);
1017 mfc_write(dev
, 0, S5P_FIMV_ENC_RC_FRAME_RATE
);
1018 /* rate control config. */
1019 reg
= mfc_read(dev
, S5P_FIMV_ENC_RC_CONFIG
);
1022 reg
|= p_h263
->rc_frame_qp
;
1023 mfc_write(dev
, reg
, S5P_FIMV_ENC_RC_CONFIG
);
1024 /* max & min value of QP */
1025 reg
= mfc_read(dev
, S5P_FIMV_ENC_RC_QBOUND
);
1027 reg
&= ~(0x3F << 8);
1028 reg
|= (p_h263
->rc_max_qp
<< 8);
1031 reg
|= p_h263
->rc_min_qp
;
1032 mfc_write(dev
, reg
, S5P_FIMV_ENC_RC_QBOUND
);
1033 /* extended encoder ctrl */
1034 shm
= s5p_mfc_read_info_v5(ctx
, EXT_ENC_CONTROL
);
1035 /* vbv buffer size */
1036 if (p
->frame_skip_mode
==
1037 V4L2_MPEG_MFC51_VIDEO_FRAME_SKIP_MODE_BUF_LIMIT
) {
1038 shm
&= ~(0xFFFF << 16);
1039 shm
|= (p
->vbv_size
<< 16);
1041 s5p_mfc_write_info_v5(ctx
, shm
, EXT_ENC_CONTROL
);
1045 /* Initialize decoding */
1046 static int s5p_mfc_init_decode_v5(struct s5p_mfc_ctx
*ctx
)
1048 struct s5p_mfc_dev
*dev
= ctx
->dev
;
1050 s5p_mfc_set_shared_buffer(ctx
);
1051 /* Setup loop filter, for decoding this is only valid for MPEG4 */
1052 if (ctx
->codec_mode
== S5P_MFC_CODEC_MPEG4_DEC
)
1053 mfc_write(dev
, ctx
->loop_filter_mpeg4
, S5P_FIMV_ENC_LF_CTRL
);
1055 mfc_write(dev
, 0, S5P_FIMV_ENC_LF_CTRL
);
1056 mfc_write(dev
, ((ctx
->slice_interface
& S5P_FIMV_SLICE_INT_MASK
) <<
1057 S5P_FIMV_SLICE_INT_SHIFT
) | (ctx
->display_delay_enable
<<
1058 S5P_FIMV_DDELAY_ENA_SHIFT
) | ((ctx
->display_delay
&
1059 S5P_FIMV_DDELAY_VAL_MASK
) << S5P_FIMV_DDELAY_VAL_SHIFT
),
1060 S5P_FIMV_SI_CH0_DPB_CONF_CTRL
);
1062 ((S5P_FIMV_CH_SEQ_HEADER
& S5P_FIMV_CH_MASK
) << S5P_FIMV_CH_SHIFT
)
1063 | (ctx
->inst_no
), S5P_FIMV_SI_CH0_INST_ID
);
1067 static void s5p_mfc_set_flush(struct s5p_mfc_ctx
*ctx
, int flush
)
1069 struct s5p_mfc_dev
*dev
= ctx
->dev
;
1073 dpb
= mfc_read(dev
, S5P_FIMV_SI_CH0_DPB_CONF_CTRL
) | (
1074 S5P_FIMV_DPB_FLUSH_MASK
<< S5P_FIMV_DPB_FLUSH_SHIFT
);
1076 dpb
= mfc_read(dev
, S5P_FIMV_SI_CH0_DPB_CONF_CTRL
) &
1077 ~(S5P_FIMV_DPB_FLUSH_MASK
<< S5P_FIMV_DPB_FLUSH_SHIFT
);
1078 mfc_write(dev
, dpb
, S5P_FIMV_SI_CH0_DPB_CONF_CTRL
);
1081 /* Decode a single frame */
1082 static int s5p_mfc_decode_one_frame_v5(struct s5p_mfc_ctx
*ctx
,
1083 enum s5p_mfc_decode_arg last_frame
)
1085 struct s5p_mfc_dev
*dev
= ctx
->dev
;
1087 mfc_write(dev
, ctx
->dec_dst_flag
, S5P_FIMV_SI_CH0_RELEASE_BUF
);
1088 s5p_mfc_set_shared_buffer(ctx
);
1089 s5p_mfc_set_flush(ctx
, ctx
->dpb_flush_flag
);
1090 /* Issue different commands to instance basing on whether it
1091 * is the last frame or not. */
1092 switch (last_frame
) {
1094 mfc_write(dev
, ((S5P_FIMV_CH_FRAME_START
& S5P_FIMV_CH_MASK
) <<
1095 S5P_FIMV_CH_SHIFT
) | (ctx
->inst_no
), S5P_FIMV_SI_CH0_INST_ID
);
1097 case MFC_DEC_LAST_FRAME
:
1098 mfc_write(dev
, ((S5P_FIMV_CH_LAST_FRAME
& S5P_FIMV_CH_MASK
) <<
1099 S5P_FIMV_CH_SHIFT
) | (ctx
->inst_no
), S5P_FIMV_SI_CH0_INST_ID
);
1101 case MFC_DEC_RES_CHANGE
:
1102 mfc_write(dev
, ((S5P_FIMV_CH_FRAME_START_REALLOC
&
1103 S5P_FIMV_CH_MASK
) << S5P_FIMV_CH_SHIFT
) | (ctx
->inst_no
),
1104 S5P_FIMV_SI_CH0_INST_ID
);
1107 mfc_debug(2, "Decoding a usual frame\n");
1111 static int s5p_mfc_init_encode_v5(struct s5p_mfc_ctx
*ctx
)
1113 struct s5p_mfc_dev
*dev
= ctx
->dev
;
1115 if (ctx
->codec_mode
== S5P_MFC_CODEC_H264_ENC
)
1116 s5p_mfc_set_enc_params_h264(ctx
);
1117 else if (ctx
->codec_mode
== S5P_MFC_CODEC_MPEG4_ENC
)
1118 s5p_mfc_set_enc_params_mpeg4(ctx
);
1119 else if (ctx
->codec_mode
== S5P_MFC_CODEC_H263_ENC
)
1120 s5p_mfc_set_enc_params_h263(ctx
);
1122 mfc_err("Unknown codec for encoding (%x)\n",
1126 s5p_mfc_set_shared_buffer(ctx
);
1127 mfc_write(dev
, ((S5P_FIMV_CH_SEQ_HEADER
<< 16) & 0x70000) |
1128 (ctx
->inst_no
), S5P_FIMV_SI_CH0_INST_ID
);
1132 /* Encode a single frame */
1133 static int s5p_mfc_encode_one_frame_v5(struct s5p_mfc_ctx
*ctx
)
1135 struct s5p_mfc_dev
*dev
= ctx
->dev
;
1137 /* memory structure cur. frame */
1138 if (ctx
->src_fmt
->fourcc
== V4L2_PIX_FMT_NV12M
)
1139 mfc_write(dev
, 0, S5P_FIMV_ENC_MAP_FOR_CUR
);
1140 else if (ctx
->src_fmt
->fourcc
== V4L2_PIX_FMT_NV12MT
)
1141 mfc_write(dev
, 3, S5P_FIMV_ENC_MAP_FOR_CUR
);
1142 s5p_mfc_set_shared_buffer(ctx
);
1144 if (ctx
->state
== MFCINST_FINISHING
)
1145 cmd
= S5P_FIMV_CH_LAST_FRAME
;
1147 cmd
= S5P_FIMV_CH_FRAME_START
;
1148 mfc_write(dev
, ((cmd
& S5P_FIMV_CH_MASK
) << S5P_FIMV_CH_SHIFT
)
1149 | (ctx
->inst_no
), S5P_FIMV_SI_CH0_INST_ID
);
1154 static void s5p_mfc_run_res_change(struct s5p_mfc_ctx
*ctx
)
1156 struct s5p_mfc_dev
*dev
= ctx
->dev
;
1158 s5p_mfc_set_dec_stream_buffer_v5(ctx
, 0, 0, 0);
1159 dev
->curr_ctx
= ctx
->num
;
1160 s5p_mfc_decode_one_frame_v5(ctx
, MFC_DEC_RES_CHANGE
);
1163 static int s5p_mfc_run_dec_frame(struct s5p_mfc_ctx
*ctx
, int last_frame
)
1165 struct s5p_mfc_dev
*dev
= ctx
->dev
;
1166 struct s5p_mfc_buf
*temp_vb
;
1168 if (ctx
->state
== MFCINST_FINISHING
) {
1169 last_frame
= MFC_DEC_LAST_FRAME
;
1170 s5p_mfc_set_dec_stream_buffer_v5(ctx
, 0, 0, 0);
1171 dev
->curr_ctx
= ctx
->num
;
1172 s5p_mfc_decode_one_frame_v5(ctx
, last_frame
);
1176 /* Frames are being decoded */
1177 if (list_empty(&ctx
->src_queue
)) {
1178 mfc_debug(2, "No src buffers\n");
1181 /* Get the next source buffer */
1182 temp_vb
= list_entry(ctx
->src_queue
.next
, struct s5p_mfc_buf
, list
);
1183 temp_vb
->flags
|= MFC_BUF_FLAG_USED
;
1184 s5p_mfc_set_dec_stream_buffer_v5(ctx
,
1185 vb2_dma_contig_plane_dma_addr(&temp_vb
->b
->vb2_buf
, 0),
1186 ctx
->consumed_stream
, temp_vb
->b
->vb2_buf
.planes
[0].bytesused
);
1187 dev
->curr_ctx
= ctx
->num
;
1188 if (temp_vb
->b
->vb2_buf
.planes
[0].bytesused
== 0) {
1189 last_frame
= MFC_DEC_LAST_FRAME
;
1190 mfc_debug(2, "Setting ctx->state to FINISHING\n");
1191 ctx
->state
= MFCINST_FINISHING
;
1193 s5p_mfc_decode_one_frame_v5(ctx
, last_frame
);
1197 static int s5p_mfc_run_enc_frame(struct s5p_mfc_ctx
*ctx
)
1199 struct s5p_mfc_dev
*dev
= ctx
->dev
;
1200 struct s5p_mfc_buf
*dst_mb
;
1201 struct s5p_mfc_buf
*src_mb
;
1202 unsigned long src_y_addr
, src_c_addr
, dst_addr
;
1203 unsigned int dst_size
;
1205 if (list_empty(&ctx
->src_queue
) && ctx
->state
!= MFCINST_FINISHING
) {
1206 mfc_debug(2, "no src buffers\n");
1209 if (list_empty(&ctx
->dst_queue
)) {
1210 mfc_debug(2, "no dst buffers\n");
1213 if (list_empty(&ctx
->src_queue
)) {
1214 /* send null frame */
1215 s5p_mfc_set_enc_frame_buffer_v5(ctx
, dev
->dma_base
[BANK_R_CTX
],
1216 dev
->dma_base
[BANK_R_CTX
]);
1219 src_mb
= list_entry(ctx
->src_queue
.next
, struct s5p_mfc_buf
,
1221 src_mb
->flags
|= MFC_BUF_FLAG_USED
;
1222 if (src_mb
->b
->vb2_buf
.planes
[0].bytesused
== 0) {
1223 /* send null frame */
1224 s5p_mfc_set_enc_frame_buffer_v5(ctx
,
1225 dev
->dma_base
[BANK_R_CTX
],
1226 dev
->dma_base
[BANK_R_CTX
]);
1227 ctx
->state
= MFCINST_FINISHING
;
1229 src_y_addr
= vb2_dma_contig_plane_dma_addr(
1230 &src_mb
->b
->vb2_buf
, 0);
1231 src_c_addr
= vb2_dma_contig_plane_dma_addr(
1232 &src_mb
->b
->vb2_buf
, 1);
1233 s5p_mfc_set_enc_frame_buffer_v5(ctx
, src_y_addr
,
1235 if (src_mb
->flags
& MFC_BUF_FLAG_EOS
)
1236 ctx
->state
= MFCINST_FINISHING
;
1239 dst_mb
= list_entry(ctx
->dst_queue
.next
, struct s5p_mfc_buf
, list
);
1240 dst_mb
->flags
|= MFC_BUF_FLAG_USED
;
1241 dst_addr
= vb2_dma_contig_plane_dma_addr(&dst_mb
->b
->vb2_buf
, 0);
1242 dst_size
= vb2_plane_size(&dst_mb
->b
->vb2_buf
, 0);
1243 s5p_mfc_set_enc_stream_buffer_v5(ctx
, dst_addr
, dst_size
);
1244 dev
->curr_ctx
= ctx
->num
;
1245 mfc_debug(2, "encoding buffer with index=%d state=%d\n",
1246 src_mb
? src_mb
->b
->vb2_buf
.index
: -1, ctx
->state
);
1247 s5p_mfc_encode_one_frame_v5(ctx
);
1251 static void s5p_mfc_run_init_dec(struct s5p_mfc_ctx
*ctx
)
1253 struct s5p_mfc_dev
*dev
= ctx
->dev
;
1254 struct s5p_mfc_buf
*temp_vb
;
1256 /* Initializing decoding - parsing header */
1257 mfc_debug(2, "Preparing to init decoding\n");
1258 temp_vb
= list_entry(ctx
->src_queue
.next
, struct s5p_mfc_buf
, list
);
1259 s5p_mfc_set_dec_desc_buffer(ctx
);
1260 mfc_debug(2, "Header size: %d\n",
1261 temp_vb
->b
->vb2_buf
.planes
[0].bytesused
);
1262 s5p_mfc_set_dec_stream_buffer_v5(ctx
,
1263 vb2_dma_contig_plane_dma_addr(&temp_vb
->b
->vb2_buf
, 0),
1264 0, temp_vb
->b
->vb2_buf
.planes
[0].bytesused
);
1265 dev
->curr_ctx
= ctx
->num
;
1266 s5p_mfc_init_decode_v5(ctx
);
1269 static void s5p_mfc_run_init_enc(struct s5p_mfc_ctx
*ctx
)
1271 struct s5p_mfc_dev
*dev
= ctx
->dev
;
1272 struct s5p_mfc_buf
*dst_mb
;
1273 unsigned long dst_addr
;
1274 unsigned int dst_size
;
1276 s5p_mfc_set_enc_ref_buffer_v5(ctx
);
1277 dst_mb
= list_entry(ctx
->dst_queue
.next
, struct s5p_mfc_buf
, list
);
1278 dst_addr
= vb2_dma_contig_plane_dma_addr(&dst_mb
->b
->vb2_buf
, 0);
1279 dst_size
= vb2_plane_size(&dst_mb
->b
->vb2_buf
, 0);
1280 s5p_mfc_set_enc_stream_buffer_v5(ctx
, dst_addr
, dst_size
);
1281 dev
->curr_ctx
= ctx
->num
;
1282 s5p_mfc_init_encode_v5(ctx
);
1285 static int s5p_mfc_run_init_dec_buffers(struct s5p_mfc_ctx
*ctx
)
1287 struct s5p_mfc_dev
*dev
= ctx
->dev
;
1288 struct s5p_mfc_buf
*temp_vb
;
1292 * Header was parsed now starting processing
1293 * First set the output frame buffers
1295 if (ctx
->capture_state
!= QUEUE_BUFS_MMAPED
) {
1296 mfc_err("It seems that not all destination buffers were mmaped\nMFC requires that all destination are mmaped before starting processing\n");
1299 if (list_empty(&ctx
->src_queue
)) {
1300 mfc_err("Header has been deallocated in the middle of initialization\n");
1303 temp_vb
= list_entry(ctx
->src_queue
.next
, struct s5p_mfc_buf
, list
);
1304 mfc_debug(2, "Header size: %d\n",
1305 temp_vb
->b
->vb2_buf
.planes
[0].bytesused
);
1306 s5p_mfc_set_dec_stream_buffer_v5(ctx
,
1307 vb2_dma_contig_plane_dma_addr(&temp_vb
->b
->vb2_buf
, 0),
1308 0, temp_vb
->b
->vb2_buf
.planes
[0].bytesused
);
1309 dev
->curr_ctx
= ctx
->num
;
1310 ret
= s5p_mfc_set_dec_frame_buffer_v5(ctx
);
1312 mfc_err("Failed to alloc frame mem\n");
1313 ctx
->state
= MFCINST_ERROR
;
1318 /* Try running an operation on hardware */
1319 static void s5p_mfc_try_run_v5(struct s5p_mfc_dev
*dev
)
1321 struct s5p_mfc_ctx
*ctx
;
1323 unsigned int ret
= 0;
1325 if (test_bit(0, &dev
->enter_suspend
)) {
1326 mfc_debug(1, "Entering suspend so do not schedule any jobs\n");
1329 /* Check whether hardware is not running */
1330 if (test_and_set_bit(0, &dev
->hw_lock
) != 0) {
1331 /* This is perfectly ok, the scheduled ctx should wait */
1332 mfc_debug(1, "Couldn't lock HW\n");
1335 /* Choose the context to run */
1336 new_ctx
= s5p_mfc_get_new_ctx(dev
);
1338 /* No contexts to run */
1339 if (test_and_clear_bit(0, &dev
->hw_lock
) == 0) {
1340 mfc_err("Failed to unlock hardware\n");
1343 mfc_debug(1, "No ctx is scheduled to be run\n");
1346 ctx
= dev
->ctx
[new_ctx
];
1347 /* Got context to run in ctx */
1349 * Last frame has already been sent to MFC.
1350 * Now obtaining frames from MFC buffer
1353 s5p_mfc_clean_ctx_int_flags(ctx
);
1355 if (ctx
->type
== MFCINST_DECODER
) {
1356 s5p_mfc_set_dec_desc_buffer(ctx
);
1357 switch (ctx
->state
) {
1358 case MFCINST_FINISHING
:
1359 s5p_mfc_run_dec_frame(ctx
, MFC_DEC_LAST_FRAME
);
1361 case MFCINST_RUNNING
:
1362 ret
= s5p_mfc_run_dec_frame(ctx
, MFC_DEC_FRAME
);
1365 ret
= s5p_mfc_hw_call(dev
->mfc_cmds
, open_inst_cmd
,
1368 case MFCINST_RETURN_INST
:
1369 ret
= s5p_mfc_hw_call(dev
->mfc_cmds
, close_inst_cmd
,
1372 case MFCINST_GOT_INST
:
1373 s5p_mfc_run_init_dec(ctx
);
1375 case MFCINST_HEAD_PARSED
:
1376 ret
= s5p_mfc_run_init_dec_buffers(ctx
);
1377 mfc_debug(1, "head parsed\n");
1379 case MFCINST_RES_CHANGE_INIT
:
1380 s5p_mfc_run_res_change(ctx
);
1382 case MFCINST_RES_CHANGE_FLUSH
:
1383 s5p_mfc_run_dec_frame(ctx
, MFC_DEC_FRAME
);
1385 case MFCINST_RES_CHANGE_END
:
1386 mfc_debug(2, "Finished remaining frames after resolution change\n");
1387 ctx
->capture_state
= QUEUE_FREE
;
1388 mfc_debug(2, "Will re-init the codec\n");
1389 s5p_mfc_run_init_dec(ctx
);
1394 } else if (ctx
->type
== MFCINST_ENCODER
) {
1395 switch (ctx
->state
) {
1396 case MFCINST_FINISHING
:
1397 case MFCINST_RUNNING
:
1398 ret
= s5p_mfc_run_enc_frame(ctx
);
1401 ret
= s5p_mfc_hw_call(dev
->mfc_cmds
, open_inst_cmd
,
1404 case MFCINST_RETURN_INST
:
1405 ret
= s5p_mfc_hw_call(dev
->mfc_cmds
, close_inst_cmd
,
1408 case MFCINST_GOT_INST
:
1409 s5p_mfc_run_init_enc(ctx
);
1415 mfc_err("Invalid context type: %d\n", ctx
->type
);
1420 /* Free hardware lock */
1421 if (test_and_clear_bit(0, &dev
->hw_lock
) == 0)
1422 mfc_err("Failed to unlock hardware\n");
1424 /* This is in deed imporant, as no operation has been
1425 * scheduled, reduce the clock count as no one will
1426 * ever do this, because no interrupt related to this try_run
1427 * will ever come from hardware. */
1428 s5p_mfc_clock_off();
1432 static void s5p_mfc_clear_int_flags_v5(struct s5p_mfc_dev
*dev
)
1434 mfc_write(dev
, 0, S5P_FIMV_RISC_HOST_INT
);
1435 mfc_write(dev
, 0, S5P_FIMV_RISC2HOST_CMD
);
1436 mfc_write(dev
, 0xffff, S5P_FIMV_SI_RTN_CHID
);
1439 static int s5p_mfc_get_dspl_y_adr_v5(struct s5p_mfc_dev
*dev
)
1441 return mfc_read(dev
, S5P_FIMV_SI_DISPLAY_Y_ADR
) << MFC_OFFSET_SHIFT
;
1444 static int s5p_mfc_get_dec_y_adr_v5(struct s5p_mfc_dev
*dev
)
1446 return mfc_read(dev
, S5P_FIMV_SI_DECODE_Y_ADR
) << MFC_OFFSET_SHIFT
;
1449 static int s5p_mfc_get_dspl_status_v5(struct s5p_mfc_dev
*dev
)
1451 return mfc_read(dev
, S5P_FIMV_SI_DISPLAY_STATUS
);
1454 static int s5p_mfc_get_dec_status_v5(struct s5p_mfc_dev
*dev
)
1456 return mfc_read(dev
, S5P_FIMV_SI_DECODE_STATUS
);
1459 static int s5p_mfc_get_dec_frame_type_v5(struct s5p_mfc_dev
*dev
)
1461 return mfc_read(dev
, S5P_FIMV_DECODE_FRAME_TYPE
) &
1462 S5P_FIMV_DECODE_FRAME_MASK
;
1465 static int s5p_mfc_get_disp_frame_type_v5(struct s5p_mfc_ctx
*ctx
)
1467 return (s5p_mfc_read_info_v5(ctx
, DISP_PIC_FRAME_TYPE
) >>
1468 S5P_FIMV_SHARED_DISP_FRAME_TYPE_SHIFT
) &
1469 S5P_FIMV_DECODE_FRAME_MASK
;
1472 static int s5p_mfc_get_consumed_stream_v5(struct s5p_mfc_dev
*dev
)
1474 return mfc_read(dev
, S5P_FIMV_SI_CONSUMED_BYTES
);
1477 static int s5p_mfc_get_int_reason_v5(struct s5p_mfc_dev
*dev
)
1480 reason
= mfc_read(dev
, S5P_FIMV_RISC2HOST_CMD
) &
1481 S5P_FIMV_RISC2HOST_CMD_MASK
;
1483 case S5P_FIMV_R2H_CMD_OPEN_INSTANCE_RET
:
1484 reason
= S5P_MFC_R2H_CMD_OPEN_INSTANCE_RET
;
1486 case S5P_FIMV_R2H_CMD_CLOSE_INSTANCE_RET
:
1487 reason
= S5P_MFC_R2H_CMD_CLOSE_INSTANCE_RET
;
1489 case S5P_FIMV_R2H_CMD_SEQ_DONE_RET
:
1490 reason
= S5P_MFC_R2H_CMD_SEQ_DONE_RET
;
1492 case S5P_FIMV_R2H_CMD_FRAME_DONE_RET
:
1493 reason
= S5P_MFC_R2H_CMD_FRAME_DONE_RET
;
1495 case S5P_FIMV_R2H_CMD_SLICE_DONE_RET
:
1496 reason
= S5P_MFC_R2H_CMD_SLICE_DONE_RET
;
1498 case S5P_FIMV_R2H_CMD_SYS_INIT_RET
:
1499 reason
= S5P_MFC_R2H_CMD_SYS_INIT_RET
;
1501 case S5P_FIMV_R2H_CMD_FW_STATUS_RET
:
1502 reason
= S5P_MFC_R2H_CMD_FW_STATUS_RET
;
1504 case S5P_FIMV_R2H_CMD_SLEEP_RET
:
1505 reason
= S5P_MFC_R2H_CMD_SLEEP_RET
;
1507 case S5P_FIMV_R2H_CMD_WAKEUP_RET
:
1508 reason
= S5P_MFC_R2H_CMD_WAKEUP_RET
;
1510 case S5P_FIMV_R2H_CMD_INIT_BUFFERS_RET
:
1511 reason
= S5P_MFC_R2H_CMD_INIT_BUFFERS_RET
;
1513 case S5P_FIMV_R2H_CMD_ENC_COMPLETE_RET
:
1514 reason
= S5P_MFC_R2H_CMD_COMPLETE_SEQ_RET
;
1516 case S5P_FIMV_R2H_CMD_ERR_RET
:
1517 reason
= S5P_MFC_R2H_CMD_ERR_RET
;
1520 reason
= S5P_MFC_R2H_CMD_EMPTY
;
1525 static int s5p_mfc_get_int_err_v5(struct s5p_mfc_dev
*dev
)
1527 return mfc_read(dev
, S5P_FIMV_RISC2HOST_ARG2
);
1530 static int s5p_mfc_err_dec_v5(unsigned int err
)
1532 return (err
& S5P_FIMV_ERR_DEC_MASK
) >> S5P_FIMV_ERR_DEC_SHIFT
;
1535 static int s5p_mfc_get_img_width_v5(struct s5p_mfc_dev
*dev
)
1537 return mfc_read(dev
, S5P_FIMV_SI_HRESOL
);
1540 static int s5p_mfc_get_img_height_v5(struct s5p_mfc_dev
*dev
)
1542 return mfc_read(dev
, S5P_FIMV_SI_VRESOL
);
1545 static int s5p_mfc_get_dpb_count_v5(struct s5p_mfc_dev
*dev
)
1547 return mfc_read(dev
, S5P_FIMV_SI_BUF_NUMBER
);
1550 static int s5p_mfc_get_mv_count_v5(struct s5p_mfc_dev
*dev
)
1556 static int s5p_mfc_get_inst_no_v5(struct s5p_mfc_dev
*dev
)
1558 return mfc_read(dev
, S5P_FIMV_RISC2HOST_ARG1
);
1561 static int s5p_mfc_get_enc_strm_size_v5(struct s5p_mfc_dev
*dev
)
1563 return mfc_read(dev
, S5P_FIMV_ENC_SI_STRM_SIZE
);
1566 static int s5p_mfc_get_enc_slice_type_v5(struct s5p_mfc_dev
*dev
)
1568 return mfc_read(dev
, S5P_FIMV_ENC_SI_SLICE_TYPE
);
1571 static int s5p_mfc_get_enc_dpb_count_v5(struct s5p_mfc_dev
*dev
)
1576 static unsigned int s5p_mfc_get_pic_type_top_v5(struct s5p_mfc_ctx
*ctx
)
1578 return s5p_mfc_read_info_v5(ctx
, PIC_TIME_TOP
);
1581 static unsigned int s5p_mfc_get_pic_type_bot_v5(struct s5p_mfc_ctx
*ctx
)
1583 return s5p_mfc_read_info_v5(ctx
, PIC_TIME_BOT
);
1586 static unsigned int s5p_mfc_get_crop_info_h_v5(struct s5p_mfc_ctx
*ctx
)
1588 return s5p_mfc_read_info_v5(ctx
, CROP_INFO_H
);
1591 static unsigned int s5p_mfc_get_crop_info_v_v5(struct s5p_mfc_ctx
*ctx
)
1593 return s5p_mfc_read_info_v5(ctx
, CROP_INFO_V
);
1596 /* Initialize opr function pointers for MFC v5 */
1597 static struct s5p_mfc_hw_ops s5p_mfc_ops_v5
= {
1598 .alloc_dec_temp_buffers
= s5p_mfc_alloc_dec_temp_buffers_v5
,
1599 .release_dec_desc_buffer
= s5p_mfc_release_dec_desc_buffer_v5
,
1600 .alloc_codec_buffers
= s5p_mfc_alloc_codec_buffers_v5
,
1601 .release_codec_buffers
= s5p_mfc_release_codec_buffers_v5
,
1602 .alloc_instance_buffer
= s5p_mfc_alloc_instance_buffer_v5
,
1603 .release_instance_buffer
= s5p_mfc_release_instance_buffer_v5
,
1604 .alloc_dev_context_buffer
= s5p_mfc_alloc_dev_context_buffer_v5
,
1605 .release_dev_context_buffer
= s5p_mfc_release_dev_context_buffer_v5
,
1606 .dec_calc_dpb_size
= s5p_mfc_dec_calc_dpb_size_v5
,
1607 .enc_calc_src_size
= s5p_mfc_enc_calc_src_size_v5
,
1608 .set_enc_stream_buffer
= s5p_mfc_set_enc_stream_buffer_v5
,
1609 .set_enc_frame_buffer
= s5p_mfc_set_enc_frame_buffer_v5
,
1610 .get_enc_frame_buffer
= s5p_mfc_get_enc_frame_buffer_v5
,
1611 .try_run
= s5p_mfc_try_run_v5
,
1612 .clear_int_flags
= s5p_mfc_clear_int_flags_v5
,
1613 .get_dspl_y_adr
= s5p_mfc_get_dspl_y_adr_v5
,
1614 .get_dec_y_adr
= s5p_mfc_get_dec_y_adr_v5
,
1615 .get_dspl_status
= s5p_mfc_get_dspl_status_v5
,
1616 .get_dec_status
= s5p_mfc_get_dec_status_v5
,
1617 .get_dec_frame_type
= s5p_mfc_get_dec_frame_type_v5
,
1618 .get_disp_frame_type
= s5p_mfc_get_disp_frame_type_v5
,
1619 .get_consumed_stream
= s5p_mfc_get_consumed_stream_v5
,
1620 .get_int_reason
= s5p_mfc_get_int_reason_v5
,
1621 .get_int_err
= s5p_mfc_get_int_err_v5
,
1622 .err_dec
= s5p_mfc_err_dec_v5
,
1623 .get_img_width
= s5p_mfc_get_img_width_v5
,
1624 .get_img_height
= s5p_mfc_get_img_height_v5
,
1625 .get_dpb_count
= s5p_mfc_get_dpb_count_v5
,
1626 .get_mv_count
= s5p_mfc_get_mv_count_v5
,
1627 .get_inst_no
= s5p_mfc_get_inst_no_v5
,
1628 .get_enc_strm_size
= s5p_mfc_get_enc_strm_size_v5
,
1629 .get_enc_slice_type
= s5p_mfc_get_enc_slice_type_v5
,
1630 .get_enc_dpb_count
= s5p_mfc_get_enc_dpb_count_v5
,
1631 .get_pic_type_top
= s5p_mfc_get_pic_type_top_v5
,
1632 .get_pic_type_bot
= s5p_mfc_get_pic_type_bot_v5
,
1633 .get_crop_info_h
= s5p_mfc_get_crop_info_h_v5
,
1634 .get_crop_info_v
= s5p_mfc_get_crop_info_v_v5
,
1637 struct s5p_mfc_hw_ops
*s5p_mfc_init_hw_ops_v5(void)
1639 return &s5p_mfc_ops_v5
;