The Linux Kernel Mailing List
 help / color / mirror / Atom feed
From: "Kyrie Wu (吴晗)" <Kyrie.Wu@mediatek.com>
To: "krzk@kernel.org" <krzk@kernel.org>
Cc: "linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	"linux-mediatek@lists.infradead.org"
	<linux-mediatek@lists.infradead.org>,
	"linux-media@vger.kernel.org" <linux-media@vger.kernel.org>,
	"devicetree@vger.kernel.org" <devicetree@vger.kernel.org>,
	"kyrie.wu@mediatek.corp-partner.google.com"
	<kyrie.wu@mediatek.corp-partner.google.com>,
	"mchehab@kernel.org" <mchehab@kernel.org>,
	"conor+dt@kernel.org" <conor+dt@kernel.org>,
	"robh@kernel.org" <robh@kernel.org>,
	"hverkuil-cisco@xs4all.nl" <hverkuil-cisco@xs4all.nl>,
	"linux-arm-kernel@lists.infradead.org"
	<linux-arm-kernel@lists.infradead.org>,
	"matthias.bgg@gmail.com" <matthias.bgg@gmail.com>,
	"krzk+dt@kernel.org" <krzk+dt@kernel.org>,
	AngeloGioacchino Del Regno
	<angelogioacchino.delregno@collabora.com>
Subject: Re: [PATCH v3 00/12] Enable jpeg enc & dec multi-hardwares for MT8196
Date: Tue, 29 Apr 2025 08:34:42 +0000	[thread overview]
Message-ID: <48b2addf6d6368a86b32d1276ded10c4deff0438.camel@mediatek.com> (raw)
In-Reply-To: <4557dde5-c0fe-4339-8c4c-291b186ee86f@kernel.org>

On Tue, 2025-04-29 at 09:34 +0200, Krzysztof Kozlowski wrote:
> External email : Please do not click links or open attachments until
> you have verified the sender or the content.
> 
> 
> On 28/04/2025 10:10, Kyrie Wu (吴晗) wrote:
> > On Mon, 2025-04-28 at 09:01 +0200, Krzysztof Kozlowski wrote:
> > > External email : Please do not click links or open attachments
> > > until
> > > you have verified the sender or the content.
> > > 
> > > 
> > > On Fri, Apr 25, 2025 at 04:53:16PM GMT, Kyrie Wu wrote:
> > > > This series adds support for mt8196 multi-hardwares jpeg enc &
> > > > dec,
> > > > by first adding mt8196 jpegdec and jpegenc compatible to
> > > > install
> > > > kernel driver. Add smmu setting to support smmu and iommu at
> > > > the
> > > > same time.
> > > > Secondly refactor buffer and clock setting to support multi-hw
> > > > jpeg
> > > > working.
> > > > Lastly, fix some bugs, including resolution change handleing,
> > > > stop
> > > > streaming sw flow and others.
> > > > 
> > > > This series has been tested with MT8196 tast test.
> > > > Encoding and decoding worked for this chip.
> > > > 
> > > > Patches 1-3 Adds jpeg encoder and decoder compatible.
> > > > Patches 4 add jpeg smmu sid setting.
> > > > Patches 5 fix jpeg hw count setting to support different chips.
> > > > Patches 6 refactor jpeg buffer payload setting to handle buffer
> > > > size bug while resolution changed.
> > > > Patches 7 reconstruct jpeg dst buffer layout.
> > > > Patches 8 fix multi-core stop streaming flow
> > > > Patches 9 refactor multi-core clk suspend/resume setting
> > > > Patches 10 fix decoding buffer number setting timing issue
> > > > Patches 11 refactor decoding resolution change operation
> > > > Patches 12 fix remove buffer operation
> > > > 
> > > > ---
> > > > This series patches dependent on:
> > > > [1]
> > > > 
> > 
> > 
https://urldefense.com/v3/__https://patchwork.kernel.org/project/linux-mediatek/patch/20250424090824.5309-1-jianhua.lin@mediatek.com/__;!!CTRNKA9wMg0ARbw!hDjzydf2blyIhdAkYs_NbqpEaaWTuolLbaHLDw8hLg4BJ87r7ePzKkET-uDw24U6YXAqmbSxItem1Q$
> > > > 
> > > > Changes compared with v2:
> > > > --refactor smmu sid setting function interface
> > > > --Some modifications for patch v2's review comments.
> > > 
> > > This is very vague. What exactly changed.
> > 
> > Dear Krzysztof,
> > 
> > Sorry for the shortly descriptions. The main changing in V3 is
> > fixed
> > dt-bindings comments by you.
> 
> 
> What changed? What comments? Again way too vague.
> 
> 
> Best regards,
> Krzysztof

Dear Krzysztof,

Sorry that the question was not made clear in my reply.
Your comments are that you want me to change the email name in the next
version and add a prefix to the subject of the patch that modifies the
yaml file. In the V3 version, I made some changes based on your
comments, but they did not meet your requirements.
I apologize to you again and hope that this reply can answer your
question.

Thanks.

Regards,
Kyrie.

      reply	other threads:[~2025-04-29  8:34 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-04-25  8:53 [PATCH v3 00/12] Enable jpeg enc & dec multi-hardwares for MT8196 Kyrie Wu
2025-04-25  8:53 ` [PATCH v3 01/12] dt-bindings: media: mediatek,jpeg: Add mediatek, mt8196-jpgdec compatible Kyrie Wu
2025-04-28  7:04   ` Krzysztof Kozlowski
2025-04-28  8:19     ` Kyrie Wu (吴晗)
2025-04-29  7:33       ` Krzysztof Kozlowski
2025-04-29  8:25         ` Kyrie Wu (吴晗)
2025-05-08  9:01           ` Kyrie Wu (吴晗)
2025-04-25  8:53 ` [PATCH v3 02/12] dt-bindings: media: mediatek,jpeg: Add mediatek, mt8196-jpgenc compatible Kyrie Wu
2025-04-25  8:53 ` [PATCH v3 03/12] media: mediatek: jpeg: add jpeg compatible Kyrie Wu
2025-04-25  8:53 ` [PATCH v3 04/12] media: mediatek: jpeg: add jpeg smmu sid setting Kyrie Wu
2025-04-25  8:53 ` [PATCH v3 05/12] media: mediatek: jpeg: fix jpeg hw count setting Kyrie Wu
2025-04-25  8:53 ` [PATCH v3 06/12] media: mediatek: jpeg: refactor jpeg buffer payload setting Kyrie Wu
2025-04-25  8:53 ` [PATCH v3 07/12] media: mediatek: jpeg: refactor jpeg dst buffer layout Kyrie Wu
2025-04-25  8:53 ` [PATCH v3 08/12] media: mediatek: jpeg: fix stop streaming flow for multi-core Kyrie Wu
2025-04-25  8:53 ` [PATCH v3 09/12] media: mediatek: jpeg: refactor multi-core clk suspend and resume setting Kyrie Wu
2025-04-25  8:53 ` [PATCH v3 10/12] media: mediatek: jpeg: fix decoding buffer number setting timing issue Kyrie Wu
2025-04-25  8:53 ` [PATCH v3 11/12] media: mediatek: jpeg: refactor decoding resolution change operation Kyrie Wu
2025-04-25  8:53 ` [PATCH v3 12/12] media: mediatek: jpeg: fix remove buffer operation for multi-core Kyrie Wu
2025-04-28  7:01 ` [PATCH v3 00/12] Enable jpeg enc & dec multi-hardwares for MT8196 Krzysztof Kozlowski
2025-04-28  8:10   ` Kyrie Wu (吴晗)
2025-04-29  7:34     ` Krzysztof Kozlowski
2025-04-29  8:34       ` Kyrie Wu (吴晗) [this message]

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=48b2addf6d6368a86b32d1276ded10c4deff0438.camel@mediatek.com \
    --to=kyrie.wu@mediatek.com \
    --cc=angelogioacchino.delregno@collabora.com \
    --cc=conor+dt@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=hverkuil-cisco@xs4all.nl \
    --cc=krzk+dt@kernel.org \
    --cc=krzk@kernel.org \
    --cc=kyrie.wu@mediatek.corp-partner.google.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-media@vger.kernel.org \
    --cc=linux-mediatek@lists.infradead.org \
    --cc=matthias.bgg@gmail.com \
    --cc=mchehab@kernel.org \
    --cc=robh@kernel.org \
    /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