From: Vitaliy Sochnev <sochnev.v.74@gmail.com>
To: "Rafael J. Wysocki" <rafael@kernel.org>,
Daniel Lezcano <daniel.lezcano@kernel.org>
Cc: Zhang Rui <rui.zhang@intel.com>,
Lukasz Luba <lukasz.luba@arm.com>,
Christian Marangi <ansuelsmth@gmail.com>,
Lorenzo Bianconi <lorenzo@kernel.org>,
Rob Herring <robh@kernel.org>,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
Conor Dooley <conor+dt@kernel.org>,
linux-pm@vger.kernel.org, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org,
Vitaliy Sochnev <sochnev.v.74@gmail.com>
Subject: [PATCH 4/4] thermal/drivers/airoha: Register a thermal zone per AN7583 sensor
Date: Sun, 13 Sep 2026 15:52:26 +0100 [thread overview]
Message-ID: <20260913145226.34643-5-sochnev.v.74@gmail.com> (raw)
In-Reply-To: <20260913145226.34643-1-sochnev.v.74@gmail.com>
AN7583 has three temperature sensors and the driver has constants for
all of them, but it registers one zone and reads only the bandgap sensor.
Register a zone per sensor. With one thermal sensor cell the cell
selects the sensor. Device trees without cells describe only zone 0 and
keep reading the bandgap sensor. EN7581 still registers one zone.
Idle and with both cores loaded on a Nokia XG-040G-MF:
bandgap 56.9 C -> 59.3 C
GbE 58.7 C -> 61.5 C
CPU 57.0 C -> 61.1 C
Signed-off-by: Vitaliy Sochnev <sochnev.v.74@gmail.com>
---
drivers/thermal/airoha_thermal.c | 64 +++++++++++++++++++++++++-------
1 file changed, 51 insertions(+), 13 deletions(-)
diff --git a/drivers/thermal/airoha_thermal.c b/drivers/thermal/airoha_thermal.c
index d7e4a088b7ea..d996ef539fa1 100644
--- a/drivers/thermal/airoha_thermal.c
+++ b/drivers/thermal/airoha_thermal.c
@@ -245,6 +245,11 @@ enum airoha_thermal_chip_scu_field {
AIROHA_THERMAL_FIELD_MAX,
};
+struct airoha_thermal_zone {
+ struct airoha_thermal_priv *priv;
+ int sensor;
+};
+
struct airoha_thermal_priv {
struct regmap *map;
struct regmap *chip_scu;
@@ -263,6 +268,9 @@ struct airoha_thermal_priv {
struct airoha_thermal_soc_data {
u32 pllrg_protect;
+ /* Sensor mux value per zone, NULL without a sensor mux */
+ const int *sensors;
+ int num_sensors;
const struct thermal_zone_device_ops *thdev_ops;
int (*probe)(struct platform_device *pdev,
@@ -348,7 +356,8 @@ static void airoha_set_thermal_mux(struct airoha_thermal_priv *priv,
static int en7581_thermal_get_temp(struct thermal_zone_device *tz, int *temp)
{
- struct airoha_thermal_priv *priv = thermal_zone_device_priv(tz);
+ struct airoha_thermal_zone *zone = thermal_zone_device_priv(tz);
+ struct airoha_thermal_priv *priv = zone->priv;
int min_value, max_value, avg_value, value;
int i;
@@ -374,7 +383,8 @@ static int en7581_thermal_get_temp(struct thermal_zone_device *tz, int *temp)
static int en7581_thermal_set_trips(struct thermal_zone_device *tz, int low,
int high)
{
- struct airoha_thermal_priv *priv = thermal_zone_device_priv(tz);
+ struct airoha_thermal_zone *zone = thermal_zone_device_priv(tz);
+ struct airoha_thermal_priv *priv = zone->priv;
bool enable_monitor = false;
if (high != INT_MAX) {
@@ -640,8 +650,9 @@ static int an7583_thermal_read_diodes(struct airoha_thermal_priv *priv,
static int an7583_thermal_get_temp(struct thermal_zone_device *tz, int *temp)
{
- struct airoha_thermal_priv *priv = thermal_zone_device_priv(tz);
- int sensor_idx;
+ struct airoha_thermal_zone *zone = thermal_zone_device_priv(tz);
+ struct airoha_thermal_priv *priv = zone->priv;
+ int sensor_idx = zone->sensor;
int delta_diode, delta_gain;
int coeff, slope, offset;
int tries = AIROHA_THERMAL_MUX_TRIES;
@@ -649,9 +660,6 @@ static int an7583_thermal_get_temp(struct thermal_zone_device *tz, int *temp)
int diode_zero, diode_d0, diode_d1;
- /* Always read sensor AN7583_BGP_TEMP_SENSOR */
- sensor_idx = AN7583_BGP_TEMP_SENSOR;
-
coeff = an7583_thermal_coeff[sensor_idx];
slope = an7583_thermal_slope[sensor_idx];
offset = an7583_thermal_offset[sensor_idx];
@@ -715,7 +723,7 @@ static int airoha_thermal_probe(struct platform_device *pdev)
const struct airoha_thermal_soc_data *soc_data;
struct airoha_thermal_priv *priv;
struct device *dev = &pdev->dev;
- int ret;
+ int ret, i;
soc_data = device_get_match_data(dev);
@@ -737,11 +745,31 @@ static int airoha_thermal_probe(struct platform_device *pdev)
return ret;
/* register of thermal sensor and get info from DT */
- priv->tz = devm_thermal_of_zone_register(dev, 0, priv,
- soc_data->thdev_ops);
- if (IS_ERR(priv->tz)) {
- dev_err(dev, "register thermal zone sensor failed\n");
- return PTR_ERR(priv->tz);
+ for (i = 0; i < soc_data->num_sensors; i++) {
+ struct airoha_thermal_zone *zone;
+ struct thermal_zone_device *tz;
+
+ zone = devm_kzalloc(dev, sizeof(*zone), GFP_KERNEL);
+ if (!zone)
+ return -ENOMEM;
+
+ zone->priv = priv;
+ zone->sensor = soc_data->sensors ? soc_data->sensors[i] :
+ AIROHA_THERMAL_NO_MUX_SENSOR;
+
+ tz = devm_thermal_of_zone_register(dev, i, zone,
+ soc_data->thdev_ops);
+ if (IS_ERR(tz)) {
+ /* A DT may describe fewer zones than sensors */
+ if (i && PTR_ERR(tz) == -ENODEV)
+ continue;
+
+ dev_err(dev, "register thermal zone %d failed\n", i);
+ return PTR_ERR(tz);
+ }
+
+ if (!i)
+ priv->tz = tz;
}
platform_set_drvdata(pdev, priv);
@@ -749,7 +777,15 @@ static int airoha_thermal_probe(struct platform_device *pdev)
return soc_data->post_probe ? soc_data->post_probe(pdev) : 0;
}
+/* Zone order; the bandgap sensor stays zone 0 */
+static const int an7583_zone_sensors[AN7583_NUM_SENSOR] = {
+ AN7583_BGP_TEMP_SENSOR,
+ AN7583_GBE_TEMP_SENSOR,
+ AN7583_CPU_TEMP_SENSOR,
+};
+
static const struct airoha_thermal_soc_data en7581_data = {
+ .num_sensors = 1,
.pllrg_protect = EN7581_SCU_THERMAL_PROTECT_KEY,
.thdev_ops = &en7581_thdev_ops,
.probe = &en7581_thermal_probe,
@@ -757,6 +793,8 @@ static const struct airoha_thermal_soc_data en7581_data = {
};
static const struct airoha_thermal_soc_data an7583_data = {
+ .sensors = an7583_zone_sensors,
+ .num_sensors = AN7583_NUM_SENSOR,
.pllrg_protect = AN7583_SCU_THERMAL_PROTECT_KEY,
.thdev_ops = &an7583_tz_ops,
.probe = &an7583_thermal_probe,
--
2.55.0
prev parent reply other threads:[~2026-09-13 12:53 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-09-13 14:52 [PATCH 0/4] thermal/drivers/airoha: Fix AN7583 mux mapping and expose all sensors Vitaliy Sochnev
2026-09-13 14:52 ` [PATCH 1/4] thermal/drivers/airoha: Fix AN7583 ADC mux field mapping Vitaliy Sochnev
2026-09-13 14:52 ` [PATCH 2/4] thermal/drivers/airoha: Serialise access to the shared ADC Vitaliy Sochnev
2026-09-13 14:52 ` [PATCH 3/4] dt-bindings: arm: airoha: Allow one thermal sensor cell for AN7583 Vitaliy Sochnev
2026-09-13 14:52 ` Vitaliy Sochnev [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=20260913145226.34643-5-sochnev.v.74@gmail.com \
--to=sochnev.v.74@gmail.com \
--cc=ansuelsmth@gmail.com \
--cc=conor+dt@kernel.org \
--cc=daniel.lezcano@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=krzk+dt@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pm@vger.kernel.org \
--cc=lorenzo@kernel.org \
--cc=lukasz.luba@arm.com \
--cc=rafael@kernel.org \
--cc=robh@kernel.org \
--cc=rui.zhang@intel.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
all inboxes | Powered by JetHome®