From: Daniel Lezcano <daniel.lezcano@linaro.org>
To: Frank Li <Frank.li@nxp.com>
Cc: "Rafael J. Wysocki" <rafael@kernel.org>,
Zhang Rui <rui.zhang@intel.com>,
Lukasz Luba <lukasz.luba@arm.com>, Rob Herring <robh@kernel.org>,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
Conor Dooley <conor+dt@kernel.org>,
Shawn Guo <shawnguo@kernel.org>,
Sascha Hauer <s.hauer@pengutronix.de>,
Pengutronix Kernel Team <kernel@pengutronix.de>,
Fabio Estevam <festevam@gmail.com>,
Pengfei Li <pengfei.li_1@nxp.com>,
Marco Felsch <m.felsch@pengutronix.de>,
linux-pm@vger.kernel.org, devicetree@vger.kernel.org,
imx@lists.linux.dev, linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org, ye.li@nxp.com, joy.zou@nxp.com,
Peng Fan <peng.fan@nxp.com>
Subject: Re: [PATCH RESEND v6 2/2] thermal: imx91: Add support for i.MX91 thermal monitoring unit
Date: Wed, 30 Apr 2025 11:15:50 +0200 [thread overview]
Message-ID: <aBHqRu7qmDlXyFeR@mai.linaro.org> (raw)
In-Reply-To: <aAJtwxBtBX4ofy/o@lizhi-Precision-Tower-5810>
On Fri, Apr 18, 2025 at 11:20:35AM -0400, Frank Li wrote:
[ ... ]
> > > +static int imx91_tmu_get_temp(struct thermal_zone_device *tz, int *temp)
> > > +{
> > > + struct imx91_tmu *tmu = thermal_zone_device_priv(tz);
> > > + s16 data;
> > > + int ret;
> > > +
> > > + ret = pm_runtime_resume_and_get(tmu->dev);
> > > + if (ret < 0)
> > > + return ret;
> >
> > Why using pm_runtime* all over the place ?
> >
> > It would make sense to have in the probe/remove functions (or in the set_mode -
> > enabled / disabled), suspend / resume but the other place it does not make
> > sense IMO. If the sensor is enabled by the set_mode function and then
> > pm_runtime_get() is called, then the ref is taken during all the time the
> > sensor is in use, so others pm_runtime_get / pm_runtime_put will be helpless,
> > no ?
> >
> >
> > > + /* DATA0 is 16bit signed number */
> > > + data = readw_relaxed(tmu->base + IMX91_TMU_DATA0);
> > > + *temp = imx91_tmu_to_mcelsius(data);
> > > + if (*temp < IMX91_TMU_TEMP_LOW_LIMIT || *temp > IMX91_TMU_TEMP_HIGH_LIMIT)
> > > + ret = -EAGAIN;
> >
> > When the measured temperature can be out of limits ?
>
> It is safety check. It may be caused by incorrect calibration data or some
> glitch at ref voltage.
In which circumstances do that can happen ? At boot time or any time at runtime ?
> > > + if (*temp <= tmu->high && tmu->enable) {
> >
> > I suggest to provide a change in the thermal core to return -EAGAIN if the
> > thermal zone is not enabled when calling thermal_zone_get_temp() and get rid of the tmu->enable
> >
> > > + writel_relaxed(IMX91_TMU_STAT0_THR1_IF, tmu->base + IMX91_TMU_STAT0 + REG_CLR);
> > > + writel_relaxed(IMX91_TMU_CTRL0_THR1_IE, tmu->base + IMX91_TMU_CTRL0 + REG_SET);
> > > + }
> >
> > For my understanding what are for these REG_CLR and REG_SET in this function?
>
> REG_CLR\REG_SET is offset 8\4 for each register, which used clear\set only
> some bits without touch other value
>
> SET register work as
>
> val = readl(reg);
> val |= mask;
> writel (val, reg);
>
> the benenfit of use CLR/SET register make code simple and it is atomic change
> one bit.
Actually, I meant what are they for and why are they in the get_temp() function ?
> > > + pm_runtime_put(tmu->dev);
> > > +
> > > + return ret;
> > > +}
> > > +
> > > +static int imx91_tmu_set_trips(struct thermal_zone_device *tz, int low, int high)
> > > +{
> > > + struct imx91_tmu *tmu = thermal_zone_device_priv(tz);
> > > + int val;
> > > + int ret;
> > > +
> > > + ret = pm_runtime_resume_and_get(tmu->dev);
> > > + if (ret < 0)
> > > + return ret;
> > > +
> > > + if (high >= IMX91_TMU_TEMP_HIGH_LIMIT)
> > > + return -EINVAL;
> > > +
> > > + writel_relaxed(IMX91_TMU_CTRL0_THR1_IE, tmu->base + IMX91_TMU_CTRL0 + REG_CLR);
> > > +
> > > + /* Comparator1 for temperature threshold */
> > > + writel_relaxed(IMX91_TMU_THR_CTRL01_THR1_MASK, tmu->base + IMX91_TMU_THR_CTRL01 + REG_CLR);
> > > + val = FIELD_PREP(IMX91_TMU_THR_CTRL01_THR1_MASK, imx91_tmu_from_mcelsius(high));
> > > + writel_relaxed(val, tmu->base + IMX91_TMU_THR_CTRL01 + REG_SET);
> > > +
> > > + writel_relaxed(IMX91_TMU_STAT0_THR1_IF, tmu->base + IMX91_TMU_STAT0 + REG_CLR);
> > > +
> > > + tmu->high = high;
> >
> > Why is 'high' needed?
>
> Need re-enable irq when tempture below high.
You should not need that. There may be something wrong with the
temperature threshold interrupt routine.
[ ... ]
--
<http://www.linaro.org/> Linaro.org │ Open source software for ARM SoCs
Follow Linaro: <http://www.facebook.com/pages/Linaro> Facebook |
<http://twitter.com/#!/linaroorg> Twitter |
<http://www.linaro.org/linaro-blog/> Blog
prev parent reply other threads:[~2025-04-30 9:15 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-04-07 20:05 [PATCH RESEND v6 0/2] thermal: imx91: Add support for i.MX91 thermal monitoring unit Frank Li
2025-04-07 20:05 ` [PATCH RESEND v6 1/2] dt-bindings: thermal: fsl,imx91-tmu: add bindings for NXP i.MX91 thermal module Frank Li
2025-04-07 20:05 ` [PATCH RESEND v6 2/2] thermal: imx91: Add support for i.MX91 thermal monitoring unit Frank Li
2025-04-18 10:05 ` Daniel Lezcano
2025-04-18 15:20 ` Frank Li
2025-04-30 9:15 ` Daniel Lezcano [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=aBHqRu7qmDlXyFeR@mai.linaro.org \
--to=daniel.lezcano@linaro.org \
--cc=Frank.li@nxp.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=festevam@gmail.com \
--cc=imx@lists.linux.dev \
--cc=joy.zou@nxp.com \
--cc=kernel@pengutronix.de \
--cc=krzk+dt@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pm@vger.kernel.org \
--cc=lukasz.luba@arm.com \
--cc=m.felsch@pengutronix.de \
--cc=peng.fan@nxp.com \
--cc=pengfei.li_1@nxp.com \
--cc=rafael@kernel.org \
--cc=robh@kernel.org \
--cc=rui.zhang@intel.com \
--cc=s.hauer@pengutronix.de \
--cc=shawnguo@kernel.org \
--cc=ye.li@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