From: Nicolas Dufresne <nicolas.dufresne@collabora.com>
To: "Jackson.lee" <jackson.lee@chipsnmedia.com>,
mchehab@kernel.org, hverkuil-cisco@xs4all.nl,
sebastian.fricke@collabora.com, bob.beckett@collabora.com,
dafna.hirschfeld@collabora.com
Cc: linux-media@vger.kernel.org, linux-kernel@vger.kernel.org,
lafley.kim@chipsnmedia.com, b-brnich@ti.com, hverkuil@xs4all.nl,
nas.chung@chipsnmedia.com
Subject: Re: [PATCH v2 3/4] media: chips-media: wave5: Fix hang after seeking
Date: Tue, 17 Dec 2024 09:05:00 -0500 [thread overview]
Message-ID: <8d39ca4fd9dee36bd5ee1b8184018e8867195bd8.camel@collabora.com> (raw)
In-Reply-To: <20241217045125.58-4-jackson.lee@chipsnmedia.com>
Le mardi 17 décembre 2024 à 13:51 +0900, Jackson.lee a écrit :
> While seeking, driver calls flush command. Before flush command is sent to
> VPU, driver should handle display buffer flags and should get all decoded
> information from VPU if VCORE is running.
>
> Signed-off-by: Jackson.lee <jackson.lee@chipsnmedia.com>
> Signed-off-by: Nas Chung <nas.chung@chipsnmedia.com>
> Reviewed-by: Nicolas Dufresne <nicolas.dufresne@collabora.com>
This one too please.
> ---
> .../platform/chips-media/wave5/wave5-vpu-dec.c | 17 ++++++++++++++++-
> .../platform/chips-media/wave5/wave5-vpuapi.c | 10 ++++++++++
> 2 files changed, 26 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/media/platform/chips-media/wave5/wave5-vpu-dec.c b/drivers/media/platform/chips-media/wave5/wave5-vpu-dec.c
> index d3ff420c52ce..882d5539630f 100644
> --- a/drivers/media/platform/chips-media/wave5/wave5-vpu-dec.c
> +++ b/drivers/media/platform/chips-media/wave5/wave5-vpu-dec.c
> @@ -1369,6 +1369,16 @@ static int streamoff_output(struct vb2_queue *q)
> struct vb2_v4l2_buffer *buf;
> int ret;
> dma_addr_t new_rd_ptr;
> + struct dec_output_info dec_info;
> + unsigned int i;
> +
> + for (i = 0; i < v4l2_m2m_num_dst_bufs_ready(m2m_ctx); i++) {
> + ret = wave5_vpu_dec_set_disp_flag(inst, i);
> + if (ret)
> + dev_dbg(inst->dev->dev,
> + "%s: Setting display flag of buf index: %u, fail: %d\n",
> + __func__, i, ret);
> + }
>
> while ((buf = v4l2_m2m_src_buf_remove(m2m_ctx))) {
> dev_dbg(inst->dev->dev, "%s: (Multiplanar) buf type %4u | index %4u\n",
> @@ -1376,6 +1386,11 @@ static int streamoff_output(struct vb2_queue *q)
> v4l2_m2m_buf_done(buf, VB2_BUF_STATE_ERROR);
> }
>
> + while (wave5_vpu_dec_get_output_info(inst, &dec_info) == 0) {
> + if (dec_info.index_frame_display >= 0)
> + wave5_vpu_dec_set_disp_flag(inst, dec_info.index_frame_display);
> + }
> +
> ret = wave5_vpu_flush_instance(inst);
> if (ret)
> return ret;
> @@ -1459,7 +1474,7 @@ static void wave5_vpu_dec_stop_streaming(struct vb2_queue *q)
> break;
>
> if (wave5_vpu_dec_get_output_info(inst, &dec_output_info))
> - dev_dbg(inst->dev->dev, "Getting decoding results from fw, fail\n");
> + dev_dbg(inst->dev->dev, "there is no output info\n");
> }
>
> v4l2_m2m_update_stop_streaming_state(m2m_ctx, q);
> diff --git a/drivers/media/platform/chips-media/wave5/wave5-vpuapi.c b/drivers/media/platform/chips-media/wave5/wave5-vpuapi.c
> index e16b990041c2..e5e879a13e8b 100644
> --- a/drivers/media/platform/chips-media/wave5/wave5-vpuapi.c
> +++ b/drivers/media/platform/chips-media/wave5/wave5-vpuapi.c
> @@ -75,6 +75,16 @@ int wave5_vpu_flush_instance(struct vpu_instance *inst)
> inst->type == VPU_INST_TYPE_DEC ? "DECODER" : "ENCODER", inst->id);
> mutex_unlock(&inst->dev->hw_lock);
> return -ETIMEDOUT;
> + } else if (ret == -EBUSY) {
> + struct dec_output_info dec_info;
> +
> + mutex_unlock(&inst->dev->hw_lock);
> + wave5_vpu_dec_get_output_info(inst, &dec_info);
> + ret = mutex_lock_interruptible(&inst->dev->hw_lock);
> + if (ret)
> + return ret;
> + if (dec_info.index_frame_display > 0)
> + wave5_vpu_dec_set_disp_flag(inst, dec_info.index_frame_display);
> }
> } while (ret != 0);
> mutex_unlock(&inst->dev->hw_lock);
next prev parent reply other threads:[~2024-12-17 14:05 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-12-17 4:51 [PATCH v2 0/4] Fix critical bugs Jackson.lee
2024-12-17 4:51 ` [PATCH v2 1/4] media: chips-media: wave5: Fix to display gray color on screen Jackson.lee
2024-12-17 14:03 ` Nicolas Dufresne
2024-12-18 2:58 ` jackson.lee
2024-12-17 4:51 ` [PATCH v2 2/4] media: chips-media: wave5: Avoid race condition for interrupt handling Jackson.lee
2024-12-17 14:04 ` Nicolas Dufresne
2024-12-18 3:02 ` jackson.lee
2024-12-17 4:51 ` [PATCH v2 3/4] media: chips-media: wave5: Fix hang after seeking Jackson.lee
2024-12-17 14:05 ` Nicolas Dufresne [this message]
2024-12-18 3:06 ` jackson.lee
2024-12-17 4:51 ` [PATCH v2 4/4] media: chips-media: wave5: Fix timeout while testing 10bit hevc fluster Jackson.lee
2025-01-07 1:39 ` [PATCH v2 0/4] Fix critical bugs jackson.lee
2025-02-03 0:54 ` jackson.lee
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=8d39ca4fd9dee36bd5ee1b8184018e8867195bd8.camel@collabora.com \
--to=nicolas.dufresne@collabora.com \
--cc=b-brnich@ti.com \
--cc=bob.beckett@collabora.com \
--cc=dafna.hirschfeld@collabora.com \
--cc=hverkuil-cisco@xs4all.nl \
--cc=hverkuil@xs4all.nl \
--cc=jackson.lee@chipsnmedia.com \
--cc=lafley.kim@chipsnmedia.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-media@vger.kernel.org \
--cc=mchehab@kernel.org \
--cc=nas.chung@chipsnmedia.com \
--cc=sebastian.fricke@collabora.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®