]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
media: amphion: defer setting last_buffer_dequeued until resolution changes are processed
authorMing Qian <ming.qian@nxp.com>
Tue, 28 Jun 2022 05:21:12 +0000 (06:21 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 17 Aug 2022 12:41:01 +0000 (14:41 +0200)
[ Upstream commit afba6e20801ad9a2f863c52c21e609e021269d83 ]

Don't set last_buffer_dequeued during dynamic resolution change,
otherwise it may be cleared in handling resolution change,
as streamoff may be called in dynamic resolution change.

Normally, this does not happen.
But we encounter a special testcase,
User issue V4L2_DEC_CMD_STOP after enqueue one buffer
that only contains codec config header, but not any frame data.
So VPU report the parsed resolution, then report the eos event.

So driver should notify user to handle resolution change first,
after it's handled, set the last_buffer_dequeued.
then the user can exit decoding normally.

Otherwise the user may be stalled.

Fixes: 6de8d628df6ef ("media: amphion: add v4l2 m2m vpu decoder stateful driver")
Signed-off-by: Ming Qian <ming.qian@nxp.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/media/platform/amphion/vdec.c
drivers/media/platform/amphion/vpu_v4l2.c

index c0dfede11ab74d9edc40e63844befbe71e8c3f44..a91f88fdb5ef4abfba191960ff720995ab774d7d 100644 (file)
@@ -174,16 +174,6 @@ static int vdec_ctrl_init(struct vpu_inst *inst)
        return 0;
 }
 
-static void vdec_set_last_buffer_dequeued(struct vpu_inst *inst)
-{
-       struct vdec_t *vdec = inst->priv;
-
-       if (vdec->eos_received) {
-               if (!vpu_set_last_buffer_dequeued(inst))
-                       vdec->eos_received--;
-       }
-}
-
 static void vdec_handle_resolution_change(struct vpu_inst *inst)
 {
        struct vdec_t *vdec = inst->priv;
@@ -230,6 +220,21 @@ static int vdec_update_state(struct vpu_inst *inst, enum vpu_codec_state state,
        return 0;
 }
 
+static void vdec_set_last_buffer_dequeued(struct vpu_inst *inst)
+{
+       struct vdec_t *vdec = inst->priv;
+
+       if (inst->state == VPU_CODEC_STATE_DYAMIC_RESOLUTION_CHANGE)
+               return;
+
+       if (vdec->eos_received) {
+               if (!vpu_set_last_buffer_dequeued(inst)) {
+                       vdec->eos_received--;
+                       vdec_update_state(inst, VPU_CODEC_STATE_DRAIN, 0);
+               }
+       }
+}
+
 static int vdec_querycap(struct file *file, void *fh, struct v4l2_capability *cap)
 {
        strscpy(cap->driver, "amphion-vpu", sizeof(cap->driver));
@@ -489,6 +494,8 @@ static int vdec_drain(struct vpu_inst *inst)
 
 static int vdec_cmd_start(struct vpu_inst *inst)
 {
+       struct vdec_t *vdec = inst->priv;
+
        switch (inst->state) {
        case VPU_CODEC_STATE_STARTED:
        case VPU_CODEC_STATE_DRAIN:
@@ -499,6 +506,8 @@ static int vdec_cmd_start(struct vpu_inst *inst)
                break;
        }
        vpu_process_capture_buffer(inst);
+       if (vdec->eos_received)
+               vdec_set_last_buffer_dequeued(inst);
        return 0;
 }
 
@@ -1188,7 +1197,6 @@ static void vdec_event_eos(struct vpu_inst *inst)
        vdec->eos_received++;
        vdec->fixed_fmt = false;
        inst->min_buffer_cap = VDEC_MIN_BUFFER_CAP;
-       vdec_update_state(inst, VPU_CODEC_STATE_DRAIN, 0);
        vdec_set_last_buffer_dequeued(inst);
        vpu_inst_unlock(inst);
 }
@@ -1470,10 +1478,10 @@ static int vdec_stop_session(struct vpu_inst *inst, u32 type)
                vdec_update_state(inst, VPU_CODEC_STATE_SEEK, 0);
                vdec->drain = 0;
        } else {
-               if (inst->state != VPU_CODEC_STATE_DYAMIC_RESOLUTION_CHANGE)
+               if (inst->state != VPU_CODEC_STATE_DYAMIC_RESOLUTION_CHANGE) {
                        vdec_abort(inst);
-
-               vdec->eos_received = 0;
+                       vdec->eos_received = 0;
+               }
                vdec_clear_slots(inst);
        }
 
index 4183a3994d307d7c787f3b716c59bd9f857b2ad9..5584b3848107db67036807e88da40c97f7f98fd1 100644 (file)
@@ -440,8 +440,8 @@ static int vpu_vb2_start_streaming(struct vb2_queue *q, unsigned int count)
                  fmt->sizeimage[1], fmt->bytesperline[1],
                  fmt->sizeimage[2], fmt->bytesperline[2],
                  q->num_buffers);
-       ret = call_vop(inst, start, q->type);
        vb2_clear_last_buffer_dequeued(q);
+       ret = call_vop(inst, start, q->type);
        if (ret)
                vpu_vb2_buffers_return(inst, q->type, VB2_BUF_STATE_QUEUED);