* [PATCH 1/4] thermal/drivers/airoha: Fix AN7583 ADC mux field mapping
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 ` Vitaliy Sochnev
2026-09-13 14:52 ` [PATCH 2/4] thermal/drivers/airoha: Serialise access to the shared ADC Vitaliy Sochnev
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Vitaliy Sochnev @ 2026-09-13 14:52 UTC (permalink / raw)
To: Rafael J. Wysocki, Daniel Lezcano
Cc: Zhang Rui, Lukasz Luba, Christian Marangi, Lorenzo Bianconi,
Rob Herring, Krzysztof Kozlowski, Conor Dooley, linux-pm,
devicetree, linux-kernel, Vitaliy Sochnev
On AN7583, bits 3:1 of 0x2e4 select the sensor (0 bandgap, 5 GbE, 6 CPU)
and bits 3:2 of 0x2a0 select the diode (0 D0, 1 ZERO, 2 D1). The driver
names them the other way round: MUX_TADC is 0x2e4, MUX_SENSOR is 0x2a0.
v5 of the AN7583 series swapped the airoha_set_thermal_mux() arguments
to match these names. The diode index now goes to the sensor selector,
so the zone reads mux positions 1, 0 and 2 (PAD_AVS, bandgap, core
voltage) instead of the bandgap diodes. On a Nokia XG-040G-MF the result
crosses the critical trip and the board powers off during boot.
Swap the field definitions. MUX_TADC then selects the diode, as on
EN7581, and the existing call order is correct.
Fixes: b20d9782756a ("thermal/drivers/airoha: Add support for AN7583 Thermal Sensor")
Signed-off-by: Vitaliy Sochnev <sochnev.v.74@gmail.com>
---
drivers/thermal/airoha_thermal.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/drivers/thermal/airoha_thermal.c b/drivers/thermal/airoha_thermal.c
index 77b3a1af271f..2934d6aba0ed 100644
--- a/drivers/thermal/airoha_thermal.c
+++ b/drivers/thermal/airoha_thermal.c
@@ -18,10 +18,10 @@
#define EN7581_DOUT_TADC 0x2f8
#define EN7581_DOUT_TADC_MASK GENMASK(15, 0)
-#define AN7583_MUX_SENSOR 0x2a0
+#define AN7583_MUX_TADC 0x2a0
#define AN7583_LOAD_ADJ GENMASK(3, 2)
-#define AN7583_MUX_TADC 0x2e4
-#define AN7583_MUX_TADC_MASK GENMASK(3, 1)
+#define AN7583_MUX_SENSOR 0x2e4
+#define AN7583_MUX_SENSOR_MASK GENMASK(3, 1)
#define AN7583_DOUT_TADC 0x2f0
/* PTP_THERMAL regs */
@@ -634,8 +634,8 @@ static const struct thermal_zone_device_ops an7583_tz_ops = {
static const struct reg_field an7583_chip_scu_fields[AIROHA_THERMAL_FIELD_MAX] = {
[AIROHA_THERMAL_DOUT_TADC] = REG_FIELD(AN7583_DOUT_TADC, 0, 31),
- [AIROHA_THERMAL_MUX_TADC] = REG_FIELD(AN7583_MUX_TADC, 1, 3),
- [AIROHA_THERMAL_MUX_SENSOR] = REG_FIELD(AN7583_MUX_SENSOR, 2, 3),
+ [AIROHA_THERMAL_MUX_TADC] = REG_FIELD(AN7583_MUX_TADC, 2, 3),
+ [AIROHA_THERMAL_MUX_SENSOR] = REG_FIELD(AN7583_MUX_SENSOR, 1, 3),
};
static int an7583_thermal_probe(struct platform_device *pdev,
--
2.55.0
^ permalink raw reply [flat|nested] 5+ messages in thread* [PATCH 2/4] thermal/drivers/airoha: Serialise access to the shared ADC
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 ` 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 ` [PATCH 4/4] thermal/drivers/airoha: Register a thermal zone per AN7583 sensor Vitaliy Sochnev
3 siblings, 0 replies; 5+ messages in thread
From: Vitaliy Sochnev @ 2026-09-13 14:52 UTC (permalink / raw)
To: Rafael J. Wysocki, Daniel Lezcano
Cc: Zhang Rui, Lukasz Luba, Christian Marangi, Lorenzo Bianconi,
Rob Herring, Krzysztof Kozlowski, Conor Dooley, linux-pm,
devicetree, linux-kernel, Vitaliy Sochnev
A read selects the sensor and walks three diodes with a 10 ms settle on
each. Nothing serialises this, so concurrent reads interleave and
convert samples taken at another mux position.
Mux writes are dropped silently unless PLLRG_PROTECT is lifted, and its
save and restore do not nest. The cached TADC value also skips a write
after another reader has moved the mux.
With the AN7583 sensors read as parallel zones during CPU frequency
changes, a zone crossed its critical trip on a chip at 55 C and the
board shut down.
Serialise the sequence, drop the cache, check the selection after
writing and after sampling, and return -EAGAIN if it does not hold.
Signed-off-by: Vitaliy Sochnev <sochnev.v.74@gmail.com>
---
drivers/thermal/airoha_thermal.c | 85 +++++++++++++++++++++++++-------
1 file changed, 68 insertions(+), 17 deletions(-)
diff --git a/drivers/thermal/airoha_thermal.c b/drivers/thermal/airoha_thermal.c
index 2934d6aba0ed..d7e4a088b7ea 100644
--- a/drivers/thermal/airoha_thermal.c
+++ b/drivers/thermal/airoha_thermal.c
@@ -5,6 +5,7 @@
#include <linux/delay.h>
#include <linux/interrupt.h>
#include <linux/mfd/syscon.h>
+#include <linux/mutex.h>
#include <linux/of.h>
#include <linux/of_address.h>
#include <linux/platform_device.h>
@@ -191,6 +192,7 @@
#define AN7583_NUM_SENSOR 3
#define AIROHA_THERMAL_NO_MUX_SENSOR -1
+#define AIROHA_THERMAL_MUX_TRIES 3
/* Convert temp to raw value as read from ADC ((((temp / 100) - init) * slope) / 1000) + offset */
#define TEMP_TO_RAW(priv, temp) ((((((temp) / 100) - (priv)->init_temp) * \
@@ -250,7 +252,8 @@ struct airoha_thermal_priv {
struct resource scu_adc_res;
u32 pllrg_protect;
- int current_adc;
+ /* Serialises mux selection and ADC sampling */
+ struct mutex lock;
struct thermal_zone_device *tz;
int init_temp;
@@ -294,9 +297,26 @@ static int airoha_get_thermal_ADC(struct airoha_thermal_priv *priv)
return val;
}
+static bool airoha_thermal_mux_holds(struct airoha_thermal_priv *priv,
+ int tdac_idx, int sensor_idx)
+{
+ unsigned int val;
+
+ if (regmap_field_read(priv->chip_scu_fields[AIROHA_THERMAL_MUX_TADC], &val) ||
+ val != tdac_idx)
+ return false;
+
+ if (sensor_idx == AIROHA_THERMAL_NO_MUX_SENSOR)
+ return true;
+
+ return !regmap_field_read(priv->chip_scu_fields[AIROHA_THERMAL_MUX_SENSOR], &val) &&
+ val == sensor_idx;
+}
+
static void airoha_set_thermal_mux(struct airoha_thermal_priv *priv,
int tdac_idx, int sensor_idx)
{
+ int tries = AIROHA_THERMAL_MUX_TRIES;
u32 pllrg;
/* Save PLLRG current value */
@@ -307,19 +327,17 @@ static void airoha_set_thermal_mux(struct airoha_thermal_priv *priv,
priv->pllrg_protect);
/*
- * Configure Thermal Sensor mux to sensor_idx.
+ * Configure Thermal Sensor mux to sensor_idx and Thermal ADC mux to
+ * tdac_idx. Writes can be dropped silently, so read them back.
* (if not supported, sensor_idx is AIROHA_THERMAL_NO_MUX_SENSOR)
*/
- if (sensor_idx != AIROHA_THERMAL_NO_MUX_SENSOR)
- regmap_field_write(priv->chip_scu_fields[AIROHA_THERMAL_MUX_SENSOR],
- sensor_idx);
-
- /* Configure Thermal ADC mux to tdac_idx */
- if (priv->current_adc != tdac_idx) {
+ do {
+ if (sensor_idx != AIROHA_THERMAL_NO_MUX_SENSOR)
+ regmap_field_write(priv->chip_scu_fields[AIROHA_THERMAL_MUX_SENSOR],
+ sensor_idx);
regmap_field_write(priv->chip_scu_fields[AIROHA_THERMAL_MUX_TADC],
tdac_idx);
- priv->current_adc = tdac_idx;
- }
+ } while (!airoha_thermal_mux_holds(priv, tdac_idx, sensor_idx) && --tries);
/* Restore PLLRG value on exit */
regmap_write(priv->chip_scu, EN7581_PLLRG_PROTECT, pllrg);
@@ -594,12 +612,40 @@ static int en7581_thermal_post_probe(struct platform_device *pdev)
return 0;
}
+static int an7583_thermal_read_diode(struct airoha_thermal_priv *priv,
+ int diode, int sensor_idx, int *val)
+{
+ airoha_set_thermal_mux(priv, diode, sensor_idx);
+ *val = airoha_get_thermal_ADC(priv);
+
+ return airoha_thermal_mux_holds(priv, diode, sensor_idx) ? 0 : -EAGAIN;
+}
+
+static int an7583_thermal_read_diodes(struct airoha_thermal_priv *priv,
+ int sensor_idx, int *zero, int *d0,
+ int *d1)
+{
+ int ret;
+
+ ret = an7583_thermal_read_diode(priv, AN7583_ZERO_TADC, sensor_idx, zero);
+ if (ret)
+ return ret;
+
+ ret = an7583_thermal_read_diode(priv, AN7583_D0_TADC, sensor_idx, d0);
+ if (ret)
+ return ret;
+
+ return an7583_thermal_read_diode(priv, AN7583_D1_TADC, sensor_idx, d1);
+}
+
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;
int delta_diode, delta_gain;
int coeff, slope, offset;
+ int tries = AIROHA_THERMAL_MUX_TRIES;
+ int ret;
int diode_zero, diode_d0, diode_d1;
@@ -610,12 +656,14 @@ static int an7583_thermal_get_temp(struct thermal_zone_device *tz, int *temp)
slope = an7583_thermal_slope[sensor_idx];
offset = an7583_thermal_offset[sensor_idx];
- airoha_set_thermal_mux(priv, AN7583_ZERO_TADC, sensor_idx);
- diode_zero = airoha_get_thermal_ADC(priv);
- airoha_set_thermal_mux(priv, AN7583_D0_TADC, sensor_idx);
- diode_d0 = airoha_get_thermal_ADC(priv);
- airoha_set_thermal_mux(priv, AN7583_D1_TADC, sensor_idx);
- diode_d1 = airoha_get_thermal_ADC(priv);
+ mutex_lock(&priv->lock);
+ do {
+ ret = an7583_thermal_read_diodes(priv, sensor_idx, &diode_zero,
+ &diode_d0, &diode_d1);
+ } while (ret == -EAGAIN && --tries);
+ mutex_unlock(&priv->lock);
+ if (ret)
+ return ret;
delta_diode = diode_d1 - diode_d0;
delta_gain = (delta_diode * coeff) / 100 + (diode_zero - diode_d1);
@@ -676,7 +724,10 @@ static int airoha_thermal_probe(struct platform_device *pdev)
return -ENOMEM;
priv->pllrg_protect = soc_data->pllrg_protect;
- priv->current_adc = -1;
+
+ ret = devm_mutex_init(dev, &priv->lock);
+ if (ret)
+ return ret;
if (!soc_data->probe)
return -EINVAL;
--
2.55.0
^ permalink raw reply [flat|nested] 5+ messages in thread* [PATCH 3/4] dt-bindings: arm: airoha: Allow one thermal sensor cell for AN7583
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 ` Vitaliy Sochnev
2026-09-13 14:52 ` [PATCH 4/4] thermal/drivers/airoha: Register a thermal zone per AN7583 sensor Vitaliy Sochnev
3 siblings, 0 replies; 5+ messages in thread
From: Vitaliy Sochnev @ 2026-09-13 14:52 UTC (permalink / raw)
To: Rafael J. Wysocki, Daniel Lezcano
Cc: Zhang Rui, Lukasz Luba, Christian Marangi, Lorenzo Bianconi,
Rob Herring, Krzysztof Kozlowski, Conor Dooley, linux-pm,
devicetree, linux-kernel, Vitaliy Sochnev
AN7583 has three temperature sensors behind the chip SCU: bandgap, GbE
and CPU. Allow one cell to select the sensor. Zero cells stay valid and
refer to the bandgap sensor.
Signed-off-by: Vitaliy Sochnev <sochnev.v.74@gmail.com>
---
.../devicetree/bindings/arm/airoha,en7581-chip-scu.yaml | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/Documentation/devicetree/bindings/arm/airoha,en7581-chip-scu.yaml b/Documentation/devicetree/bindings/arm/airoha,en7581-chip-scu.yaml
index cc564dc7b414..da159b7572f3 100644
--- a/Documentation/devicetree/bindings/arm/airoha,en7581-chip-scu.yaml
+++ b/Documentation/devicetree/bindings/arm/airoha,en7581-chip-scu.yaml
@@ -26,7 +26,10 @@ properties:
maxItems: 1
'#thermal-sensor-cells':
- const: 0
+ description:
+ 0 refers to the bandgap sensor. 1 selects the sensor with one cell,
+ 0 bandgap, 1 GbE, 2 CPU.
+ enum: [0, 1]
required:
- compatible
--
2.55.0
^ permalink raw reply [flat|nested] 5+ messages in thread* [PATCH 4/4] thermal/drivers/airoha: Register a thermal zone per AN7583 sensor
2026-09-13 14:52 [PATCH 0/4] thermal/drivers/airoha: Fix AN7583 mux mapping and expose all sensors Vitaliy Sochnev
` (2 preceding siblings ...)
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
3 siblings, 0 replies; 5+ messages in thread
From: Vitaliy Sochnev @ 2026-09-13 14:52 UTC (permalink / raw)
To: Rafael J. Wysocki, Daniel Lezcano
Cc: Zhang Rui, Lukasz Luba, Christian Marangi, Lorenzo Bianconi,
Rob Herring, Krzysztof Kozlowski, Conor Dooley, linux-pm,
devicetree, linux-kernel, Vitaliy Sochnev
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
^ permalink raw reply [flat|nested] 5+ messages in thread