Linux kernel and device drivers for NXP i.MX platforms
 help / color / mirror / Atom feed
From: Peng Fan <peng.fan@oss.nxp.com>
To: Mathieu Poirier <mathieu.poirier@linaro.org>
Cc: Peng Fan <peng.fan@nxp.com>,
	Daniel Baluta <daniel.baluta@nxp.com>,
	Shengjiu Wang <shengjiu.wang@nxp.com>,
	Frank Li <frank.li@nxp.com>,
	Bjorn Andersson <andersson@kernel.org>,
	Shawn Guo <shawnguo@kernel.org>,
	Sascha Hauer <s.hauer@pengutronix.de>,
	Pengutronix Kernel Team <kernel@pengutronix.de>,
	Fabio Estevam <festevam@gmail.com>,
	linux-remoteproc@vger.kernel.org, imx@lists.linux.dev,
	linux-arm-kernel@lists.infradead.org,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH v3 5/5] MAINTAINERS: Add an entry for i.MX remoteproc driver
Date: Thu, 23 Oct 2025 13:11:11 +0800	[thread overview]
Message-ID: <20251023051111.GA25716@nxa18884-linux.ap.freescale.net> (raw)
In-Reply-To: <aPkXRy7TsPCrq_s-@p14s>

Hi Mathieu,

On Wed, Oct 22, 2025 at 11:41:27AM -0600, Mathieu Poirier wrote:
>On Wed, Oct 15, 2025 at 09:52:59PM +0800, Peng Fan wrote:
>>  
>> +NXP i.MX REMOTEPROC DRIVERS
>> +M:	Peng Fan <peng.fan@nxp.com>
>> +M:	Daniel Baluta <daniel.baluta@nxp.com>
>> +M:	Shengjiu Wang <shengjiu.wang@nxp.com>
>> +L:	linux-remoteproc@vger.kernel.org
>> +L:	imx@lists.linux.dev
>> +S:	Maintained
>> +F:	drivers/remoteproc/imx*
>> +
>
>Here I am suggesting:
>
>M:	Daniel Baluta <daniel.baluta@nxp.com>
>R:	Peng Fan <peng.fan@nxp.com>
>R:	Shengjiu Wang <shengjiu.wang@nxp.com>

Thanks for your feedback.

I'd like to clarify the roles and contributions regarding the i.MX REMOTEPROC
drivers:

- I (Peng Fan) authored most of the code in imx_rproc.c, contributed 
  most of the patches [1].
- Shengjiu Wang is the original author of imx_dsp_rproc.c [2].
- Daniel Baluta also has done excellent work reviewing and coordinating.

Given this, I believe it's more appropriate to keep all three of us as
'M:' maintainers in the MAINTAINERS file. This reflects the actual ownership
and ongoing maintenance responsibilities and matches the rule regarding
selecting the maintainer in
https://docs.kernel.org/maintainer/feature-and-driver-maintainers.html

We all actively maintain and support the driver, and having multiple
maintainers ensures better coverage and responsiveness.

In this patch, I use drivers/remoteproc/imx* to match imx_rproc.c and
imx_dsp_rproc.c, if you prefer, I could just add entry for imx_rproc.c:
M: Peng Fan ..
M: Daniel Baluta ..
F: drivers/remoteproc/imx_rproc[c.h]

Let me know your thoughts.

[1] patch author:
git log --pretty=format:"%an" -- drivers/remoteproc/imx_rproc.c | sort | uniq -c | sort -nr
     45 Peng Fan
      5 Christophe JAILLET
      4 Dong Aisheng
      2 Wei Yongjun
      2 Uwe Kleine-König
      2 Linus Torvalds
      2 Hiago De Franco
      2 Aleksandr Mishin
      1 Ulf Hansson
      1 Thomas Gleixner
      1 Shengjiu Wang
      1 Rob Herring (Arm)
      1 Rob Herring
      1 Oleksij Rempel
      1 Miaoqian Lin
      1 Mathieu Poirier
      1 Marek Vasut
      1 Fabio Estevam
      1 Dan Carpenter
      1 Clement Leger
      1 Andrew Davis
[2]
patch author:
git log --pretty=format:"%an" -- drivers/remoteproc/imx_dsp_rproc.c | sort | uniq -c | sort -nr
      5 Shengjiu Wang
      4 Iuliana Prodan
      3 Daniel Baluta
      2 Uwe Kleine-König
      2 Mathieu Poirier
      2 Arnd Bergmann
      1 Ulf Hansson
      1 Rob Herring (Arm)
      1 Rob Herring
      1 Peng Fan
      1 Markus Elfring
      1 Linus Torvalds
      1 Andrew Davis

Reviewed-by count:
git log --pretty=format:"%b" -- drivers/remoteproc/imx_rproc.c | grep "Reviewed-by:" | cut -d':' -f2 | cut
-d'<' -f1 | sort | uniq -c | sort -nr
     21  Mathieu Poirier
     17  Daniel Baluta
     10  Frank Li
      6  Peng Fan
      5  Iuliana Prodan
      4  Richard Zhu
      3  Ulf Hansson
      3  Oleksij Rempel
      3  Bjorn Andersson
      1  Kate Stewart
      1  Enrico Weigelt
      1  Allison Randal

git log --pretty=format:"%b" -- drivers/remoteproc/imx_dsp_rproc.c | grep "Reviewed-by:" | cut -d':' -f2 |
cut -d'<' -f1 | sort | uniq -c | sort -nr
      4  Iuliana Prodan
      3  Daniel Baluta
      2  Peng Fan
      1  Mukesh Ojha
      1  Mathieu Poirier
      1  Frank Li

Best regards,
Peng
>
>
>>  NXP NETC TIMER PTP CLOCK DRIVER
>>  M:	Wei Fang <wei.fang@nxp.com>
>>  M:	Clark Wang <xiaoning.wang@nxp.com>
>> 
>> -- 
>> 2.37.1
>> 

      reply	other threads:[~2025-10-23  3:59 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-10-15 13:52 [PATCH v3 0/5] remoteproc: imx_rproc: misc clean up Peng Fan
2025-10-15 13:52 ` [PATCH v3 1/5] remoteproc: imx_rproc: Simplify clock enable logic using dcfg flags Peng Fan
2025-10-15 13:52 ` [PATCH v3 2/5] remoteproc: imx_rproc: Make detach operation platform-specific Peng Fan
2025-10-15 13:52 ` [PATCH v3 3/5] remoteproc: imx_rproc: Enable PM runtime support unconditionally Peng Fan
2025-10-15 14:28   ` Frank Li
2025-10-20 15:37   ` Mathieu Poirier
2025-10-20 16:53     ` Daniel Baluta
2025-10-22  8:12   ` Daniel Baluta
2025-10-15 13:52 ` [PATCH v3 4/5] remoteproc: imx_rproc: Remove the assignement to method Peng Fan
2025-10-15 13:52 ` [PATCH v3 5/5] MAINTAINERS: Add an entry for i.MX remoteproc driver Peng Fan
2025-10-22 17:41   ` Mathieu Poirier
2025-10-23  5:11     ` Peng Fan [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=20251023051111.GA25716@nxa18884-linux.ap.freescale.net \
    --to=peng.fan@oss.nxp.com \
    --cc=andersson@kernel.org \
    --cc=daniel.baluta@nxp.com \
    --cc=festevam@gmail.com \
    --cc=frank.li@nxp.com \
    --cc=imx@lists.linux.dev \
    --cc=kernel@pengutronix.de \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-remoteproc@vger.kernel.org \
    --cc=mathieu.poirier@linaro.org \
    --cc=peng.fan@nxp.com \
    --cc=s.hauer@pengutronix.de \
    --cc=shawnguo@kernel.org \
    --cc=shengjiu.wang@nxp.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