Commit 8cdc3794 authored by Yunfei Dong's avatar Yunfei Dong Committed by Mauro Carvalho Chehab

media: mtk-vcodec: vdec: support stateless API

Support the stateless codec API that will be used by MT8183.

[acourbot: refactor, cleanup and split]
Signed-off-by: default avatarYunfei Dong <yunfei.dong@mediatek.com>
Co-developed-by: default avatarAlexandre Courbot <acourbot@chromium.org>
Signed-off-by: default avatarAlexandre Courbot <acourbot@chromium.org>
Signed-off-by: default avatarTzung-Bi Shih <tzungbi@google.com>
Signed-off-by: default avatarHans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+huawei@kernel.org>
parent ffe5350c
...@@ -12,6 +12,7 @@ mtk-vcodec-dec-y := vdec/vdec_h264_if.o \ ...@@ -12,6 +12,7 @@ mtk-vcodec-dec-y := vdec/vdec_h264_if.o \
vdec_vpu_if.o \ vdec_vpu_if.o \
mtk_vcodec_dec.o \ mtk_vcodec_dec.o \
mtk_vcodec_dec_stateful.o \ mtk_vcodec_dec_stateful.o \
mtk_vcodec_dec_stateless.o \
mtk_vcodec_dec_pm.o \ mtk_vcodec_dec_pm.o \
mtk-vcodec-enc-y := venc/venc_vp8_if.o \ mtk-vcodec-enc-y := venc/venc_vp8_if.o \
......
...@@ -47,6 +47,13 @@ static struct mtk_q_data *mtk_vdec_get_q_data(struct mtk_vcodec_ctx *ctx, ...@@ -47,6 +47,13 @@ static struct mtk_q_data *mtk_vdec_get_q_data(struct mtk_vcodec_ctx *ctx,
static int vidioc_try_decoder_cmd(struct file *file, void *priv, static int vidioc_try_decoder_cmd(struct file *file, void *priv,
struct v4l2_decoder_cmd *cmd) struct v4l2_decoder_cmd *cmd)
{ {
struct mtk_vcodec_ctx *ctx = fh_to_ctx(priv);
/* Use M2M stateless helper if relevant */
if (ctx->dev->vdec_pdata->uses_stateless_api)
return v4l2_m2m_ioctl_stateless_try_decoder_cmd(file, priv,
cmd);
else
return v4l2_m2m_ioctl_try_decoder_cmd(file, priv, cmd); return v4l2_m2m_ioctl_try_decoder_cmd(file, priv, cmd);
} }
...@@ -62,6 +69,10 @@ static int vidioc_decoder_cmd(struct file *file, void *priv, ...@@ -62,6 +69,10 @@ static int vidioc_decoder_cmd(struct file *file, void *priv,
if (ret) if (ret)
return ret; return ret;
/* Use M2M stateless helper if relevant */
if (ctx->dev->vdec_pdata->uses_stateless_api)
return v4l2_m2m_ioctl_stateless_decoder_cmd(file, priv, cmd);
mtk_v4l2_debug(1, "decoder cmd=%u", cmd->cmd); mtk_v4l2_debug(1, "decoder cmd=%u", cmd->cmd);
dst_vq = v4l2_m2m_get_vq(ctx->m2m_ctx, dst_vq = v4l2_m2m_get_vq(ctx->m2m_ctx,
V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE); V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE);
...@@ -401,7 +412,8 @@ static int vidioc_vdec_s_fmt(struct file *file, void *priv, ...@@ -401,7 +412,8 @@ static int vidioc_vdec_s_fmt(struct file *file, void *priv,
* Setting OUTPUT format after OUTPUT buffers are allocated is invalid * Setting OUTPUT format after OUTPUT buffers are allocated is invalid
* if using the stateful API. * if using the stateful API.
*/ */
if ((f->type == V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE) && if (!dec_pdata->uses_stateless_api &&
f->type == V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE &&
vb2_is_busy(&ctx->m2m_ctx->out_q_ctx.q)) { vb2_is_busy(&ctx->m2m_ctx->out_q_ctx.q)) {
mtk_v4l2_err("out_q_ctx buffers already requested"); mtk_v4l2_err("out_q_ctx buffers already requested");
ret = -EBUSY; ret = -EBUSY;
...@@ -444,6 +456,7 @@ static int vidioc_vdec_s_fmt(struct file *file, void *priv, ...@@ -444,6 +456,7 @@ static int vidioc_vdec_s_fmt(struct file *file, void *priv,
ctx->quantization = pix_mp->quantization; ctx->quantization = pix_mp->quantization;
ctx->xfer_func = pix_mp->xfer_func; ctx->xfer_func = pix_mp->xfer_func;
ctx->current_codec = fmt->fourcc;
if (ctx->state == MTK_STATE_FREE) { if (ctx->state == MTK_STATE_FREE) {
ret = vdec_if_init(ctx, q_data->fmt->fourcc); ret = vdec_if_init(ctx, q_data->fmt->fourcc);
if (ret) { if (ret) {
...@@ -455,6 +468,48 @@ static int vidioc_vdec_s_fmt(struct file *file, void *priv, ...@@ -455,6 +468,48 @@ static int vidioc_vdec_s_fmt(struct file *file, void *priv,
} }
} }
/*
* If using the stateless API, S_FMT should have the effect of setting
* the CAPTURE queue resolution no matter which queue it was called on.
*/
if (dec_pdata->uses_stateless_api) {
ctx->picinfo.pic_w = pix_mp->width;
ctx->picinfo.pic_h = pix_mp->height;
ret = vdec_if_get_param(ctx, GET_PARAM_PIC_INFO, &ctx->picinfo);
if (ret) {
mtk_v4l2_err("[%d]Error!! Get GET_PARAM_PICTURE_INFO Fail",
ctx->id);
return -EINVAL;
}
ctx->last_decoded_picinfo = ctx->picinfo;
if (ctx->q_data[MTK_Q_DATA_DST].fmt->num_planes == 1) {
ctx->q_data[MTK_Q_DATA_DST].sizeimage[0] =
ctx->picinfo.fb_sz[0] +
ctx->picinfo.fb_sz[1];
ctx->q_data[MTK_Q_DATA_DST].bytesperline[0] =
ctx->picinfo.buf_w;
} else {
ctx->q_data[MTK_Q_DATA_DST].sizeimage[0] =
ctx->picinfo.fb_sz[0];
ctx->q_data[MTK_Q_DATA_DST].bytesperline[0] =
ctx->picinfo.buf_w;
ctx->q_data[MTK_Q_DATA_DST].sizeimage[1] =
ctx->picinfo.fb_sz[1];
ctx->q_data[MTK_Q_DATA_DST].bytesperline[1] =
ctx->picinfo.buf_w;
}
ctx->q_data[MTK_Q_DATA_DST].coded_width = ctx->picinfo.buf_w;
ctx->q_data[MTK_Q_DATA_DST].coded_height = ctx->picinfo.buf_h;
mtk_v4l2_debug(2, "[%d] vdec_if_init() num_plane = %d wxh=%dx%d pic wxh=%dx%d sz[0]=0x%x sz[1]=0x%x",
ctx->id, pix_mp->num_planes, ctx->picinfo.buf_w, ctx->picinfo.buf_h,
ctx->picinfo.pic_w, ctx->picinfo.pic_h,
ctx->q_data[MTK_Q_DATA_DST].sizeimage[0],
ctx->q_data[MTK_Q_DATA_DST].sizeimage[1]);
}
return 0; return 0;
} }
...@@ -746,9 +801,14 @@ void vb2ops_vdec_stop_streaming(struct vb2_queue *q) ...@@ -746,9 +801,14 @@ void vb2ops_vdec_stop_streaming(struct vb2_queue *q)
if (q->type == V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE) { if (q->type == V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE) {
while ((src_buf = v4l2_m2m_src_buf_remove(ctx->m2m_ctx))) { while ((src_buf = v4l2_m2m_src_buf_remove(ctx->m2m_ctx))) {
if (src_buf != &ctx->empty_flush_buf.vb) if (src_buf != &ctx->empty_flush_buf.vb) {
struct media_request *req =
src_buf->vb2_buf.req_obj.req;
v4l2_m2m_buf_done(src_buf, v4l2_m2m_buf_done(src_buf,
VB2_BUF_STATE_ERROR); VB2_BUF_STATE_ERROR);
if (req)
v4l2_ctrl_request_complete(req, &ctx->ctrl_hdl);
}
} }
return; return;
} }
......
...@@ -44,6 +44,7 @@ struct vdec_fb { ...@@ -44,6 +44,7 @@ struct vdec_fb {
* queue yet * queue yet
* @error: An unrecoverable error occurs on this buffer. * @error: An unrecoverable error occurs on this buffer.
* @frame_buffer: Decode status, and buffer information of Capture buffer * @frame_buffer: Decode status, and buffer information of Capture buffer
* @bs_buffer: Output buffer info
* *
* Note : These status information help us track and debug buffer state * Note : These status information help us track and debug buffer state
*/ */
...@@ -54,11 +55,16 @@ struct mtk_video_dec_buf { ...@@ -54,11 +55,16 @@ struct mtk_video_dec_buf {
bool queued_in_vb2; bool queued_in_vb2;
bool queued_in_v4l2; bool queued_in_v4l2;
bool error; bool error;
union {
struct vdec_fb frame_buffer; struct vdec_fb frame_buffer;
struct mtk_vcodec_mem bs_buffer;
};
}; };
extern const struct v4l2_ioctl_ops mtk_vdec_ioctl_ops; extern const struct v4l2_ioctl_ops mtk_vdec_ioctl_ops;
extern const struct v4l2_m2m_ops mtk_vdec_m2m_ops; extern const struct v4l2_m2m_ops mtk_vdec_m2m_ops;
extern const struct media_device_ops mtk_vcodec_media_ops;
/* /*
......
This diff is collapsed.
...@@ -253,6 +253,7 @@ struct vdec_pic_info { ...@@ -253,6 +253,7 @@ struct vdec_pic_info {
* @empty_flush_buf: a fake size-0 capture buffer that indicates flush. Only * @empty_flush_buf: a fake size-0 capture buffer that indicates flush. Only
* to be used with encoder and stateful decoder. * to be used with encoder and stateful decoder.
* @is_flushing: set to true if flushing is in progress. * @is_flushing: set to true if flushing is in progress.
* @current_codec: current set input codec, in V4L2 pixel format
* *
* @colorspace: enum v4l2_colorspace; supplemental to pixelformat * @colorspace: enum v4l2_colorspace; supplemental to pixelformat
* @ycbcr_enc: enum v4l2_ycbcr_encoding, Y'CbCr encoding * @ycbcr_enc: enum v4l2_ycbcr_encoding, Y'CbCr encoding
...@@ -294,6 +295,8 @@ struct mtk_vcodec_ctx { ...@@ -294,6 +295,8 @@ struct mtk_vcodec_ctx {
struct v4l2_m2m_buffer empty_flush_buf; struct v4l2_m2m_buffer empty_flush_buf;
bool is_flushing; bool is_flushing;
u32 current_codec;
enum v4l2_colorspace colorspace; enum v4l2_colorspace colorspace;
enum v4l2_ycbcr_encoding ycbcr_enc; enum v4l2_ycbcr_encoding ycbcr_enc;
enum v4l2_quantization quantization; enum v4l2_quantization quantization;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment