From: Daniel Lezcano <daniel.lezcano@linaro.org>
To: Laura Nao <laura.nao@collabora.com>,
srini@kernel.org, robh@kernel.org, krzk+dt@kernel.org,
conor+dt@kernel.org, rafael@kernel.org, rui.zhang@intel.com,
lukasz.luba@arm.com, matthias.bgg@gmail.com,
angelogioacchino.delregno@collabora.com
Cc: nfraprado@collabora.com, arnd@arndb.de, colin.i.king@gmail.com,
u.kleine-koenig@baylibre.com, andrew-ct.chen@mediatek.com,
lala.lin@mediatek.com, bchihi@baylibre.com,
frank-w@public-files.de, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org, linux-pm@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
linux-mediatek@lists.infradead.org, kernel@collabora.com,
Chen-Yu Tsai <wenst@chromium.org>, Fei Shao <fshao@chromium.org>
Subject: Re: [PATCH RESEND v3 3/9] thermal/drivers/mediatek/lvts: Guard against zero temp_factor in lvts_raw_to_temp
Date: Mon, 10 Nov 2025 13:42:06 +0100 [thread overview]
Message-ID: <84b9fd00-ce75-43bf-a53b-48818628f7e2@linaro.org> (raw)
In-Reply-To: <20251016142158.740242-4-laura.nao@collabora.com>
On 10/16/25 16:21, Laura Nao wrote:
> Add a guard against zero temp_factor in lvts_raw_to_temp() to prevent
> division by zero and ensure safe conversion.
Is the temp_factor something else than a ro data statically initialized
by the lvts_data structure ?
It is pointless to handle the case where the temp_factor is zero. If we
read the temperature the kernel crashes immediately (which means it was
not tested).
The temp_factor is an internal value of the driver. If the temp_factor
is zero, the driver is buggy and should be fixed.
> Fixes: 6725a29321e4 ("thermal/drivers/mediatek/lvts_thermal: Make coeff configurable")
> Reviewed-by: Chen-Yu Tsai <wenst@chromium.org>
> Reviewed-by: Fei Shao <fshao@chromium.org>
> Reviewed-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
> Tested-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
> Signed-off-by: Laura Nao <laura.nao@collabora.com>
> ---
> drivers/thermal/mediatek/lvts_thermal.c | 12 +++++++++---
> 1 file changed, 9 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/thermal/mediatek/lvts_thermal.c b/drivers/thermal/mediatek/lvts_thermal.c
> index 1c54d0b75b1a..4ef549386add 100644
> --- a/drivers/thermal/mediatek/lvts_thermal.c
> +++ b/drivers/thermal/mediatek/lvts_thermal.c
> @@ -284,11 +284,14 @@ static int lvts_raw_to_temp(u32 raw_temp, int temp_factor)
>
> static u32 lvts_temp_to_raw(int temperature, int temp_factor)
> {
> - u32 raw_temp = ((s64)(golden_temp_offset - temperature)) << 14;
> + u32 raw_temp;
>
> - raw_temp = div_s64(raw_temp, -temp_factor);
> + if (temp_factor == 0)
> + return temperature;
>
> - return raw_temp;
> + raw_temp = ((s64)(golden_temp_offset - temperature)) << 14;
> +
> + return div_s64(raw_temp, -temp_factor);
> }
>
> static int lvts_get_temp(struct thermal_zone_device *tz, int *temp)
> @@ -1346,6 +1349,9 @@ static int lvts_probe(struct platform_device *pdev)
> if (irq < 0)
> return irq;
>
> + if (!lvts_data->temp_factor)
> + dev_warn(dev, "temp_factor should never be zero; check platform data.\n");
> +
> golden_temp_offset = lvts_data->temp_offset;
>
> ret = lvts_domain_init(dev, lvts_td, lvts_data);
If
--
<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
next prev parent reply other threads:[~2025-11-10 12:42 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-10-16 14:21 [PATCH RESEND v3 0/9] Add thermal sensor driver support for Mediatek MT8196 Laura Nao
2025-10-16 14:21 ` [PATCH RESEND v3 1/9] dt-bindings: thermal: mediatek: Add LVTS thermal controller support for MT8196 Laura Nao
2025-10-16 14:21 ` [PATCH RESEND v3 2/9] thermal/drivers/mediatek/lvts: Make number of calibration offsets configurable Laura Nao
2025-10-16 14:21 ` [PATCH RESEND v3 3/9] thermal/drivers/mediatek/lvts: Guard against zero temp_factor in lvts_raw_to_temp Laura Nao
2025-11-10 12:42 ` Daniel Lezcano [this message]
2025-11-13 16:18 ` Laura Nao
2025-10-16 14:21 ` [PATCH RESEND v3 4/9] thermal: mediatek: lvts: Add platform ops to support alternative conversion logic Laura Nao
2025-11-10 13:06 ` Daniel Lezcano
2025-11-13 16:20 ` Laura Nao
2025-10-16 14:21 ` [PATCH RESEND v3 5/9] thermal/drivers/mediatek/lvts: Add lvts_temp_to_raw variant Laura Nao
2025-11-10 13:07 ` Daniel Lezcano
2025-10-16 14:21 ` [PATCH RESEND v3 6/9] thermal/drivers/mediatek/lvts: Add support for ATP mode Laura Nao
2025-10-16 14:21 ` [PATCH RESEND v3 7/9] thermal/drivers/mediatek/lvts: Support MSR offset for 16-bit calibration data Laura Nao
2025-10-16 14:21 ` [PATCH RESEND v3 8/9] thermal/drivers/mediatek/lvts_thermal: Add MT8196 support Laura Nao
2025-10-16 14:21 ` [PATCH RESEND v3 9/9] dt-bindings: nvmem: mediatek: efuse: Add support for MT8196 Laura Nao
2025-10-17 17:00 ` Aw: [PATCH RESEND v3 0/9] Add thermal sensor driver support for Mediatek MT8196 frank-w
2025-10-27 10:28 ` AngeloGioacchino Del Regno
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=84b9fd00-ce75-43bf-a53b-48818628f7e2@linaro.org \
--to=daniel.lezcano@linaro.org \
--cc=andrew-ct.chen@mediatek.com \
--cc=angelogioacchino.delregno@collabora.com \
--cc=arnd@arndb.de \
--cc=bchihi@baylibre.com \
--cc=colin.i.king@gmail.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=frank-w@public-files.de \
--cc=fshao@chromium.org \
--cc=kernel@collabora.com \
--cc=krzk+dt@kernel.org \
--cc=lala.lin@mediatek.com \
--cc=laura.nao@collabora.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mediatek@lists.infradead.org \
--cc=linux-pm@vger.kernel.org \
--cc=lukasz.luba@arm.com \
--cc=matthias.bgg@gmail.com \
--cc=nfraprado@collabora.com \
--cc=rafael@kernel.org \
--cc=robh@kernel.org \
--cc=rui.zhang@intel.com \
--cc=srini@kernel.org \
--cc=u.kleine-koenig@baylibre.com \
--cc=wenst@chromium.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
all inboxes | Powered by JetHome®