public inbox for devicetree@vger.kernel.org
 help / color / mirror / Atom feed
From: Peng Fan <peng.fan@oss.nxp.com>
To: Dan Carpenter <dan.carpenter@linaro.org>
Cc: Sudeep Holla <sudeep.holla@arm.com>,
	Cristian Marussi <cristian.marussi@arm.com>,
	Shawn Guo <shawnguo@kernel.org>,
	Sascha Hauer <s.hauer@pengutronix.de>,
	Pengutronix Kernel Team <kernel@pengutronix.de>,
	Fabio Estevam <festevam@gmail.com>, Rob Herring <robh@kernel.org>,
	Krzysztof Kozlowski <krzk+dt@kernel.org>,
	Conor Dooley <conor+dt@kernel.org>,
	linux-kernel@vger.kernel.org, arm-scmi@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org, imx@lists.linux.dev,
	devicetree@vger.kernel.org, Peng Fan <peng.fan@nxp.com>
Subject: Re: [PATCH v4 3/7] firmware: arm_scmi: imx: Add i.MX95 LMM protocol
Date: Wed, 9 Apr 2025 11:37:39 +0800	[thread overview]
Message-ID: <20250409033739.GB27988@nxa18884-linux> (raw)
In-Reply-To: <c71fb862-85a5-42d4-91f8-398d0d532872@stanley.mountain>

On Tue, Apr 08, 2025 at 12:17:54PM +0300, Dan Carpenter wrote:
>On Tue, Apr 08, 2025 at 04:44:27PM +0800, Peng Fan (OSS) wrote:
>> +static int scmi_imx_lmm_protocol_attributes_get(const struct scmi_protocol_handle *ph,
>> +						struct scmi_imx_lmm_priv *priv)
>> +{
>> +	struct scmi_msg_imx_lmm_protocol_attributes *attr;
>> +	struct scmi_xfer *t;
>> +	int ret;
>> +
>> +	ret = ph->xops->xfer_get_init(ph, PROTOCOL_ATTRIBUTES, 0,
>> +				      sizeof(*attr), &t);
>> +	if (ret)
>> +		return ret;
>> +
>> +	attr = t->rx.buf;
>> +
>> +	ret = ph->xops->do_xfer(ph, t);
>> +	if (!ret) {
>> +		priv->nr_lmm = le32_get_bits(attr->attributes, SCMI_IMX_LMM_NR_LM_MASK);
>> +		if (priv->nr_lmm > SCMI_IMX_LMM_NR_MAX) {
>> +			dev_err(ph->dev, "i.MX LMM: %d:Exceed max supported Logical Machines\n",
>> +				priv->nr_lmm);
>> +			return -EINVAL;
>
>This needs to call ph->xops->xfer_put(ph, t) before returning.

Oops. Thanks for spotting this.

I will wait to see if any more comments.

Not sure Sudeep could help address this if no more comments, or need me to
send a new version.

Thanks,
Peng.

>
>> +		}
>> +		dev_info(ph->dev, "i.MX LMM: %d Logical Machines\n", priv->nr_lmm);
>> +	}
>> +
>> +	ph->xops->xfer_put(ph, t);
>> +
>> +	return ret;
>> +}
>
>regards,
>dan carpenter

  reply	other threads:[~2025-04-09  2:29 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-04-08  8:44 [PATCH v4 0/7] firmware: scmi/imx: Add i.MX95 LMM/CPU Protocol Peng Fan (OSS)
2025-04-08  8:44 ` [PATCH v4 1/7] firmware: arm_scmi: imx: Add LMM and CPU documentation Peng Fan (OSS)
2025-04-08  8:44 ` [PATCH v4 2/7] dt-bindings: firmware: Add i.MX95 SCMI LMM and CPU protocol Peng Fan (OSS)
2025-04-08  8:44 ` [PATCH v4 3/7] firmware: arm_scmi: imx: Add i.MX95 LMM protocol Peng Fan (OSS)
2025-04-08  9:17   ` Dan Carpenter
2025-04-09  3:37     ` Peng Fan [this message]
2025-04-08  9:21   ` Dan Carpenter
2025-04-09  3:33     ` Peng Fan
2025-04-08  8:44 ` [PATCH v4 4/7] firmware: arm_scmi: imx: Add i.MX95 CPU Protocol Peng Fan (OSS)
2025-04-08  8:44 ` [PATCH v4 5/7] firmware: imx: Add i.MX95 SCMI LMM driver Peng Fan (OSS)
2025-04-14  9:34   ` Sudeep Holla
2025-04-14  9:57     ` Peng Fan
2025-04-14 10:15       ` Sudeep Holla
2025-04-14 10:44         ` Peng Fan
2025-04-14 11:00           ` Peng Fan
2025-04-14 11:17             ` Sudeep Holla
2025-04-15  9:10               ` Peng Fan
2025-04-15 14:48                 ` Sudeep Holla
2025-04-08  8:44 ` [PATCH v4 6/7] firmware: imx: Add i.MX95 SCMI CPU driver Peng Fan (OSS)
2025-04-08  8:44 ` [PATCH v4 7/7] MAINTAINERS: add entry for i.MX SCMI extensions Peng Fan (OSS)
2025-04-24  9:43 ` [PATCH v4 0/7] firmware: scmi/imx: Add i.MX95 LMM/CPU Protocol Sudeep Holla

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=20250409033739.GB27988@nxa18884-linux \
    --to=peng.fan@oss.nxp.com \
    --cc=arm-scmi@vger.kernel.org \
    --cc=conor+dt@kernel.org \
    --cc=cristian.marussi@arm.com \
    --cc=dan.carpenter@linaro.org \
    --cc=devicetree@vger.kernel.org \
    --cc=festevam@gmail.com \
    --cc=imx@lists.linux.dev \
    --cc=kernel@pengutronix.de \
    --cc=krzk+dt@kernel.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=peng.fan@nxp.com \
    --cc=robh@kernel.org \
    --cc=s.hauer@pengutronix.de \
    --cc=shawnguo@kernel.org \
    --cc=sudeep.holla@arm.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