[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <110bf71508ccdc3e7bac47d29b9b08dec712a353.camel@mediatek.com>
Date: Mon, 17 Apr 2023 12:10:37 +0000
From: Yunfei Dong (董云飞)
<Yunfei.Dong@...iatek.com>
To: "wenst@...omium.org" <wenst@...omium.org>,
"nfraprado@...labora.com" <nfraprado@...labora.com>,
"nicolas@...fresne.ca" <nicolas@...fresne.ca>,
"angelogioacchino.delregno@...labora.com"
<angelogioacchino.delregno@...labora.com>,
"benjamin.gaignard@...labora.com" <benjamin.gaignard@...labora.com>,
"hverkuil-cisco@...all.nl" <hverkuil-cisco@...all.nl>
CC: "linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>,
"linux-mediatek@...ts.infradead.org"
<linux-mediatek@...ts.infradead.org>,
"frkoenig@...omium.org" <frkoenig@...omium.org>,
"stevecho@...omium.org" <stevecho@...omium.org>,
"linux-media@...r.kernel.org" <linux-media@...r.kernel.org>,
"devicetree@...r.kernel.org" <devicetree@...r.kernel.org>,
"daniel@...ll.ch" <daniel@...ll.ch>,
Project_Global_Chrome_Upstream_Group
<Project_Global_Chrome_Upstream_Group@...iatek.com>,
"hsinyi@...omium.org" <hsinyi@...omium.org>,
"linux-arm-kernel@...ts.infradead.org"
<linux-arm-kernel@...ts.infradead.org>,
"matthias.bgg@...il.com" <matthias.bgg@...il.com>
Subject: Re: [PATCH 2/6] media: mediatek: vcodec: add the definition of
decoder status
Hi AngeloGioacchino,
Thanks for your suggestion.
On Mon, 2023-04-17 at 11:26 +0200, AngeloGioacchino Del Regno wrote:
> External email : Please do not click links or open attachments until
> you have verified the sender or the content.
>
>
> Il 17/04/23 07:48, Yunfei Dong ha scritto:
> > Adding the status used to separate different decoder period for
> > core hardware.
> >
> > Signed-off-by: Yunfei Dong <yunfei.dong@...iatek.com>
> > ---
> > drivers/media/platform/mediatek/vcodec/vdec_msg_queue.h | 7
> > +++++++
> > 1 file changed, 7 insertions(+)
> >
> > diff --git
> > a/drivers/media/platform/mediatek/vcodec/vdec_msg_queue.h
> > b/drivers/media/platform/mediatek/vcodec/vdec_msg_queue.h
> > index a5d44bc97c16..19508be08566 100644
> > --- a/drivers/media/platform/mediatek/vcodec/vdec_msg_queue.h
> > +++ b/drivers/media/platform/mediatek/vcodec/vdec_msg_queue.h
> > @@ -21,6 +21,13 @@ struct mtk_vcodec_ctx;
> > struct mtk_vcodec_dev;
> > typedef int (*core_decode_cb_t)(struct vdec_lat_buf *lat_buf);
> >
> > +/* current context isn't work */
> > +#define CONTEXT_LIST_EMPTY (0)
> > +/* queued to the core work list */
> > +#define CONTEXT_LIST_QUEUED (1)
> > +/* context decode done */
> > +#define CONTEXT_LIST_DEC_DONE (2)
>
> I would prefer an enumeration instead; you can keep the documentation
> for those
> status signals with kerneldoc on the new enum.
>
> /**
> * enum core_ctx_status - Context decode status for core hardware
> * @CONTEXT_LIST_EMPTY: No buffer queued on Core HW (must always
> be 0)
> * @CONTEXT_LIST_QUEUED: Buffer queued to the core work list
> * @CONTEXT_LIST_DEC_DONE: Context decode done
> */
> enum core_ctx_status {
> CONTEXT_LIST_EMPTY = 0,
> CONTEXT_LIST_QUEUED,
> CONTEXT_LIST_DEC_DONE,
> }
>
> Moreover, since this is a rather simple addition, please squash this
> commit with
> patch [3/6] where you actually also introduce the actual usage of the
> new enum.
>
Fixed in patch v2.
Best Regards,
Yunfei Dong
> Cheers,
> Angelo
>
Powered by blists - more mailing lists