* [PATCH v3 0/2] Add support for Analog Devices MAX30210 [not found] <20260304122509.67931-1-johnerasmusmari.geronimo@analog.com> @ 2026-09-10 22:12 ` John Erasmus Mari Geronimo 2026-09-10 22:12 ` [PATCH v3 1/2] dt-bindings: iio: temperature: add ADI MAX30210 John Erasmus Mari Geronimo ` (3 more replies) 0 siblings, 4 replies; 9+ messages in thread From: John Erasmus Mari Geronimo @ 2026-09-10 22:12 UTC (permalink / raw) To: linux-iio, devicetree Cc: krzk+dt, jic23, dlechner, nuno.sa, Michael.Hennerich, andy, robh, conor+dt Add IIO support and device-tree bindings for the Analog Devices MAX30210 low-power digital temperature sensor. Changes since v2: - Fix FIFO byte-count handling and sample decoding. - Fix IIO debug register read/write access. - Validate event threshold values and sampling-frequency register values. - Return the correct sampling-frequency format and reject direct reads while buffered capture is enabled. - Clean up the Kconfig entry and device-tree supply declaration. John Erasmus Mari Geronimo (2): dt-bindings: iio: temperature: add ADI MAX30210 iio: temperature: add support for Analog Devices MAX30210 .../iio/temperature/adi,max30210.yaml | 61 ++ MAINTAINERS | 8 + drivers/iio/temperature/Kconfig | 10 + drivers/iio/temperature/Makefile | 1 + drivers/iio/temperature/max30210.c | 689 ++++++++++++++++++ 5 files changed, 769 insertions(+) create mode 100644 Documentation/devicetree/bindings/iio/temperature/adi,max30210.yaml create mode 100644 drivers/iio/temperature/max30210.c -- 2.34.1 ^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH v3 1/2] dt-bindings: iio: temperature: add ADI MAX30210 2026-09-10 22:12 ` [PATCH v3 0/2] Add support for Analog Devices MAX30210 John Erasmus Mari Geronimo @ 2026-09-10 22:12 ` John Erasmus Mari Geronimo 2026-09-13 8:59 ` Krzysztof Kozlowski 2026-09-10 22:12 ` [PATCH v3 2/2] iio: temperature: add support for Analog Devices MAX30210 John Erasmus Mari Geronimo ` (2 subsequent siblings) 3 siblings, 1 reply; 9+ messages in thread From: John Erasmus Mari Geronimo @ 2026-09-10 22:12 UTC (permalink / raw) To: linux-iio, devicetree Cc: krzk+dt, jic23, dlechner, nuno.sa, Michael.Hennerich, andy, robh, conor+dt Add device tree binding documentation for the Analog Devices MAX30210 temperature sensor. Signed-off-by: John Erasmus Mari Geronimo <johnerasmusmari.geronimo@analog.com> --- .../iio/temperature/adi,max30210.yaml | 61 +++++++++++++++++++ MAINTAINERS | 7 +++ 2 files changed, 68 insertions(+) create mode 100644 Documentation/devicetree/bindings/iio/temperature/adi,max30210.yaml diff --git a/Documentation/devicetree/bindings/iio/temperature/adi,max30210.yaml b/Documentation/devicetree/bindings/iio/temperature/adi,max30210.yaml new file mode 100644 index 0000000000000..8bfd154bbc438 --- /dev/null +++ b/Documentation/devicetree/bindings/iio/temperature/adi,max30210.yaml @@ -0,0 +1,61 @@ +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) +# Copyright 2026 Analog Devices Inc. +%YAML 1.2 +--- +$id: http://devicetree.org/schemas/iio/temperature/adi,max30210.yaml# +$schema: http://devicetree.org/meta-schemas/core.yaml# + +title: Analog Devices MAX30210 Temperature Sensor + +maintainers: + - John Erasmus Mari Geronimo <johnerasmusmari.geronimo@analog.com> + +description: | + The MAX30210 is a temperature sensor with an I2C interface. + https://www.analog.com/media/en/technical-documentation/data-sheets/max30210.pdf + +properties: + compatible: + enum: + - adi,max30210 + + reg: + maxItems: 1 + + vdd-supply: true + + powerdown-gpios: + description: GPIO connected to the CVT/PDB pin (active low). + maxItems: 1 + + interrupts: + description: Connected to INT pin. Interrupt triggered on both rising and falling edges. + maxItems: 1 + +required: + - compatible + - reg + - vdd-supply + +additionalProperties: false + +examples: + - | + #include <dt-bindings/interrupt-controller/irq.h> + #include <dt-bindings/gpio/gpio.h> + + i2c { + #address-cells = <1>; + #size-cells = <0>; + + temperature-sensor@40 { + compatible = "adi,max30210"; + reg = <0x40>; + vdd-supply = <&vdd>; + powerdown-gpios = <&gpio 12 GPIO_ACTIVE_LOW>; + + interrupt-parent = <&gpio>; + interrupts = <17 IRQ_TYPE_EDGE_BOTH>; + }; + }; +... diff --git a/MAINTAINERS b/MAINTAINERS index 396d4e76dccc2..6eb3cf66f431c 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -1653,6 +1653,13 @@ W: https://ez.analog.com/linux-software-drivers F: Documentation/devicetree/bindings/iio/dac/adi,max22007.yaml F: drivers/iio/dac/max22007.c +ANALOG DEVICES INC MAX30210 DRIVER +M: John Erasmus Mari Geronimo <johnerasmusmari.geronimo@analog.com> +L: linux-iio@vger.kernel.org +S: Supported +W: https://ez.analog.com/linux-software-drivers +F: Documentation/devicetree/bindings/iio/temperature/adi,max30210.yaml + ANALOG DEVICES INC ADA4250 DRIVER M: Antoniu Miclaus <antoniu.miclaus@analog.com> L: linux-iio@vger.kernel.org -- 2.34.1 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH v3 1/2] dt-bindings: iio: temperature: add ADI MAX30210 2026-09-10 22:12 ` [PATCH v3 1/2] dt-bindings: iio: temperature: add ADI MAX30210 John Erasmus Mari Geronimo @ 2026-09-13 8:59 ` Krzysztof Kozlowski 0 siblings, 0 replies; 9+ messages in thread From: Krzysztof Kozlowski @ 2026-09-13 8:59 UTC (permalink / raw) To: John Erasmus Mari Geronimo Cc: linux-iio, devicetree, krzk+dt, jic23, dlechner, nuno.sa, Michael.Hennerich, andy, robh, conor+dt On Fri, Sep 11, 2026 at 06:12:16AM +0800, John Erasmus Mari Geronimo wrote: > Add device tree binding documentation for the Analog Devices > MAX30210 temperature sensor. > > Signed-off-by: John Erasmus Mari Geronimo <johnerasmusmari.geronimo@analog.com> > --- > .../iio/temperature/adi,max30210.yaml | 61 +++++++++++++++++++ > MAINTAINERS | 7 +++ > 2 files changed, 68 insertions(+) > create mode 100644 Documentation/devicetree/bindings/iio/temperature/adi,max30210.yaml > Do not attach (thread) your patchsets to some other threads (unrelated or older versions). This buries them deep in the mailbox and might interfere with applying entire sets. See also: https://elixir.bootlin.com/linux/v6.16-rc2/source/Documentation/process/submitting-patches.rst#L830 Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@oss.qualcomm.com> Best regards, Krzysztof ^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH v3 2/2] iio: temperature: add support for Analog Devices MAX30210 2026-09-10 22:12 ` [PATCH v3 0/2] Add support for Analog Devices MAX30210 John Erasmus Mari Geronimo 2026-09-10 22:12 ` [PATCH v3 1/2] dt-bindings: iio: temperature: add ADI MAX30210 John Erasmus Mari Geronimo @ 2026-09-10 22:12 ` John Erasmus Mari Geronimo 2026-09-10 22:25 ` sashiko-bot ` (2 more replies) 2026-09-11 7:45 ` [PATCH v3 0/2] Add " Andy Shevchenko 2026-09-13 17:25 ` Jonathan Cameron 3 siblings, 3 replies; 9+ messages in thread From: John Erasmus Mari Geronimo @ 2026-09-10 22:12 UTC (permalink / raw) To: linux-iio, devicetree Cc: krzk+dt, jic23, dlechner, nuno.sa, Michael.Hennerich, andy, robh, conor+dt Add support for the Analog Devices MAX30210 I2C temperature sensor. The driver uses regmap for register access and integrates with the IIO framework. It supports: - Direct mode temperature conversion - Configurable sampling frequency - Threshold events - FIFO operation with IIO kfifo buffer support - Optional interrupt-driven data ready signaling The device provides 16-bit signed temperature data and a 64-sample FIFO. Signed-off-by: John Erasmus Mari Geronimo <johnerasmusmari.geronimo@analog.com> --- MAINTAINERS | 1 + drivers/iio/temperature/Kconfig | 10 + drivers/iio/temperature/Makefile | 1 + drivers/iio/temperature/max30210.c | 689 +++++++++++++++++++++++++++++ 4 files changed, 701 insertions(+) create mode 100644 drivers/iio/temperature/max30210.c diff --git a/MAINTAINERS b/MAINTAINERS index 6eb3cf66f431c..e479c64a284e0 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -1659,6 +1659,7 @@ L: linux-iio@vger.kernel.org S: Supported W: https://ez.analog.com/linux-software-drivers F: Documentation/devicetree/bindings/iio/temperature/adi,max30210.yaml +F: drivers/iio/temperature/max30210.c ANALOG DEVICES INC ADA4250 DRIVER M: Antoniu Miclaus <antoniu.miclaus@analog.com> diff --git a/drivers/iio/temperature/Kconfig b/drivers/iio/temperature/Kconfig index 9328b2250aced..cf840f7dda765 100644 --- a/drivers/iio/temperature/Kconfig +++ b/drivers/iio/temperature/Kconfig @@ -152,6 +152,16 @@ config MAX30208 This driver can also be built as a module. If so, the module will be called max30208. +config MAX30210 + tristate "Analog Devices MAX30210 temperature sensor" + depends on I2C + help + If you say yes here you get support for MAX30210 low-power digital + temperature sensor chip connected via I2C. + + This driver can also be built as a module. If so, the module + will be called max30210. + config MAX31856 tristate "MAX31856 thermocouple sensor" depends on SPI diff --git a/drivers/iio/temperature/Makefile b/drivers/iio/temperature/Makefile index 07d6e65709f7f..e5aad14dc09b9 100644 --- a/drivers/iio/temperature/Makefile +++ b/drivers/iio/temperature/Makefile @@ -8,6 +8,7 @@ obj-$(CONFIG_LTC2983) += ltc2983.o obj-$(CONFIG_HID_SENSOR_TEMP) += hid-sensor-temperature.o obj-$(CONFIG_MAXIM_THERMOCOUPLE) += maxim_thermocouple.o obj-$(CONFIG_MAX30208) += max30208.o +obj-$(CONFIG_MAX30210) += max30210.o obj-$(CONFIG_MAX31856) += max31856.o obj-$(CONFIG_MAX31865) += max31865.o obj-$(CONFIG_MCP9600) += mcp9600.o diff --git a/drivers/iio/temperature/max30210.c b/drivers/iio/temperature/max30210.c new file mode 100644 index 0000000000000..07ff85d6d4848 --- /dev/null +++ b/drivers/iio/temperature/max30210.c @@ -0,0 +1,689 @@ +// SPDX-License-Identifier: GPL-2.0-only +/* + * Analog Devices MAX30210 I2C Temperature Sensor driver + * + * Copyright 2026 Analog Devices Inc. + */ + +#include <linux/bitfield.h> +#include <linux/gpio/consumer.h> +#include <linux/i2c.h> +#include <linux/iio/buffer.h> +#include <linux/iio/events.h> +#include <linux/iio/iio.h> +#include <linux/iio/kfifo_buf.h> +#include <linux/iio/sysfs.h> +#include <linux/regmap.h> +#include <linux/unaligned.h> +#include <linux/units.h> + +#define MAX30210_STATUS_REG 0x00 +#define MAX30210_INT_EN_REG 0x02 +#define MAX30210_FIFO_DATA_REG 0x08 +#define MAX30210_FIFO_CONF_1_REG 0x09 +#define MAX30210_FIFO_CONF_2_REG 0x0A +#define MAX30210_SYS_CONF_REG 0x11 +#define MAX30210_PIN_CONF_REG 0x12 +#define MAX30210_TEMP_ALM_HI_REG 0x22 +#define MAX30210_TEMP_ALM_LO_REG 0x24 +#define MAX30210_TEMP_INC_THRESH_REG 0x26 +#define MAX30210_TEMP_DEC_THRESH_REG 0x27 +#define MAX30210_TEMP_CONF_1_REG 0x28 +#define MAX30210_TEMP_CONF_2_REG 0x29 +#define MAX30210_TEMP_CONV_REG 0x2A +#define MAX30210_TEMP_DATA_REG 0x2B +#define MAX30210_TEMP_SLOPE_REG 0x2D +#define MAX30210_UNIQUE_ID_REG 0x30 +#define MAX30210_PART_ID_REG 0xFF + +#define MAX30210_STATUS_A_FULL_MASK BIT(7) +#define MAX30210_STATUS_TEMP_RDY_MASK BIT(6) +#define MAX30210_STATUS_TEMP_DEC_MASK BIT(5) +#define MAX30210_STATUS_TEMP_INC_MASK BIT(4) +#define MAX30210_STATUS_TEMP_LO_MASK BIT(3) +#define MAX30210_STATUS_TEMP_HI_MASK BIT(2) +#define MAX30210_STATUS_PWR_RDY_MASK BIT(0) + +#define MAX30210_FIFOCONF1_A_FULL_MASK GENMASK(5, 0) +#define MAX30210_FIFOCONF1_FLUSH_FIFO_MASK BIT(4) + +#define MAX30210_SYSCONF_RESET_MASK BIT(0) + +#define MAX30210_PINCONF_EXT_CNV_EN_MASK BIT(7) +#define MAX30210_PINCONF_EXT_CVT_ICFG_MASK BIT(6) +#define MAX30210_PINCONF_INT_FCFG_MASK GENMASK(3, 2) +#define MAX30210_PINCONF_INT_OCFG_MASK GENMASK(1, 0) + +#define MAX30210_TEMPCONF1_CHG_DET_EN_MASK BIT(3) +#define MAX30210_TEMPCONF1_RATE_CHG_FILTER_MASK GENMASK(2, 0) + +#define MAX30210_TEMPCONF2_TEMP_PERIOD_MASK GENMASK(3, 0) +#define MAX30210_TEMPCONF2_ALERT_MODE_MASK BIT(7) + +#define MAX30210_TEMPCONV_AUTO_MASK BIT(1) +#define MAX30210_TEMPCONV_CONV_T_MASK BIT(0) + +#define MAX30210_PART_ID 0x45 +#define MAX30210_FIFO_SIZE 64 +#define MAX30210_FIFO_BYTES_PER_SAMPLE 3 +#define MAX30210_FIFO_TEMP_MASK GENMASK(15, 0) +#define MAX30210_FIFO_INVAL_DATA GENMASK(23, 0) +#define MAX30210_WATERMARK_DEFAULT (0x40 - 0x1F) + +#define MAX30210_UNIQUE_ID_LEN 6 +#define MAX30210_EXT_CVT_FREQ_MIN 1 +#define MAX30210_EXT_CVT_FREQ_MAX 20 + +struct max30210_state { + struct regmap *regmap; + u8 watermark; + /* Raw FIFO byte buffer */ + u8 fifo_buf[MAX30210_FIFO_BYTES_PER_SAMPLE * MAX30210_FIFO_SIZE]; +}; + +static const int max30210_samp_freq_avail[][2] = { + { 0, 15625 }, + { 0, 31250 }, + { 0, 62500 }, + { 0, 125000 }, + { 0, 250000 }, + { 0, 500000 }, + { 1, 0 }, + { 2, 0 }, + { 4, 0 }, + { 8, 0 }, +}; + +static const struct regmap_config max30210_regmap = { + .reg_bits = 8, + .val_bits = 8, + .max_register = MAX30210_PART_ID_REG, +}; + +static int max30210_read_temp(struct regmap *regmap, unsigned int reg, + int *temp) +{ + __be16 val; + int ret; + + ret = regmap_bulk_read(regmap, reg, &val, sizeof(val)); + if (ret) + return ret; + + *temp = sign_extend32(be16_to_cpu(val), 15); + + return IIO_VAL_INT; +} + +static int max30210_write_temp(struct regmap *regmap, unsigned int reg, + int temp) +{ + __be16 val; + + val = cpu_to_be16(temp); + + return regmap_bulk_write(regmap, reg, &val, sizeof(val)); +} + +static void max30210_fifo_read(struct iio_dev *indio_dev) +{ + struct max30210_state *st = iio_priv(indio_dev); + int ret; + + ret = regmap_bulk_read(st->regmap, MAX30210_FIFO_DATA_REG, + st->fifo_buf, + MAX30210_FIFO_BYTES_PER_SAMPLE * st->watermark); + if (ret) { + dev_err(&indio_dev->dev, "Failed to read from fifo.\n"); + return; + } + + for (unsigned int i = 0; i < st->watermark; i++) { + u32 raw = get_unaligned_be24(&st->fifo_buf[MAX30210_FIFO_BYTES_PER_SAMPLE * i]); + + if (raw == MAX30210_FIFO_INVAL_DATA) { + dev_err_ratelimited(&indio_dev->dev, "Invalid data\n"); + continue; + } + + s16 temp = (s16)FIELD_GET(MAX30210_FIFO_TEMP_MASK, raw); + + iio_push_to_buffers(indio_dev, &temp); + } +} + +static irqreturn_t max30210_irq_handler(int irq, void *dev_id) +{ + struct iio_dev *indio_dev = dev_id; + struct max30210_state *st = iio_priv(indio_dev); + unsigned int status; + int ret; + + ret = regmap_read(st->regmap, MAX30210_STATUS_REG, &status); + if (ret) { + dev_err(&indio_dev->dev, "Status read failed\n"); + return IRQ_NONE; + } + + if (status & MAX30210_STATUS_A_FULL_MASK) + max30210_fifo_read(indio_dev); + + if (status & MAX30210_STATUS_TEMP_HI_MASK) + iio_push_event(indio_dev, + IIO_UNMOD_EVENT_CODE(IIO_TEMP, 0, + IIO_EV_TYPE_THRESH, + IIO_EV_DIR_RISING), + iio_get_time_ns(indio_dev)); + + if (status & MAX30210_STATUS_TEMP_LO_MASK) + iio_push_event(indio_dev, + IIO_UNMOD_EVENT_CODE(IIO_TEMP, 0, + IIO_EV_TYPE_THRESH, + IIO_EV_DIR_FALLING), + iio_get_time_ns(indio_dev)); + + return IRQ_HANDLED; +} + +static int max30210_reg_access(struct iio_dev *indio_dev, unsigned int reg, + unsigned int writeval, unsigned int *readval) +{ + struct max30210_state *st = iio_priv(indio_dev); + + if (readval) + return regmap_read(st->regmap, reg, readval); + + return regmap_write(st->regmap, reg, writeval); +} + +static int max30210_read_event(struct iio_dev *indio_dev, + const struct iio_chan_spec *chan, + enum iio_event_type type, + enum iio_event_direction dir, + enum iio_event_info info, int *val, int *val2) +{ + struct max30210_state *st = iio_priv(indio_dev); + + if (info != IIO_EV_INFO_VALUE) + return -EINVAL; + + switch (dir) { + case IIO_EV_DIR_RISING: + switch (type) { + case IIO_EV_TYPE_THRESH: + return max30210_read_temp(st->regmap, MAX30210_TEMP_ALM_HI_REG, val); + default: + return -EINVAL; + } + case IIO_EV_DIR_FALLING: + switch (type) { + case IIO_EV_TYPE_THRESH: + return max30210_read_temp(st->regmap, MAX30210_TEMP_ALM_LO_REG, val); + default: + return -EINVAL; + } + default: + return -EINVAL; + } +} + +static int max30210_write_event(struct iio_dev *indio_dev, + const struct iio_chan_spec *chan, + enum iio_event_type type, + enum iio_event_direction dir, + enum iio_event_info info, int val, int val2) +{ + struct max30210_state *st = iio_priv(indio_dev); + + if (info != IIO_EV_INFO_VALUE) + return -EINVAL; + + if (val < S16_MIN || val > S16_MAX) + return -EINVAL; + + switch (dir) { + case IIO_EV_DIR_RISING: + switch (type) { + case IIO_EV_TYPE_THRESH: + return max30210_write_temp(st->regmap, MAX30210_TEMP_ALM_HI_REG, val); + default: + return -EINVAL; + } + case IIO_EV_DIR_FALLING: + switch (type) { + case IIO_EV_TYPE_THRESH: + return max30210_write_temp(st->regmap, MAX30210_TEMP_ALM_LO_REG, val); + default: + return -EINVAL; + } + default: + return -EINVAL; + } +} + +static int max30210_read_event_config(struct iio_dev *indio_dev, + const struct iio_chan_spec *chan, + enum iio_event_type type, + enum iio_event_direction dir) +{ + struct max30210_state *st = iio_priv(indio_dev); + unsigned int val; + int ret; + + ret = regmap_read(st->regmap, MAX30210_INT_EN_REG, &val); + if (ret) + return ret; + + switch (dir) { + case IIO_EV_DIR_RISING: + switch (type) { + case IIO_EV_TYPE_THRESH: + return FIELD_GET(MAX30210_STATUS_TEMP_HI_MASK, val); + default: + return -EINVAL; + } + case IIO_EV_DIR_FALLING: + switch (type) { + case IIO_EV_TYPE_THRESH: + return FIELD_GET(MAX30210_STATUS_TEMP_LO_MASK, val); + default: + return -EINVAL; + } + default: + return -EINVAL; + } +} + +static int max30210_write_event_config(struct iio_dev *indio_dev, + const struct iio_chan_spec *chan, + enum iio_event_type type, + enum iio_event_direction dir, bool state) +{ + struct max30210_state *st = iio_priv(indio_dev); + + switch (dir) { + case IIO_EV_DIR_RISING: + switch (type) { + case IIO_EV_TYPE_THRESH: + return regmap_assign_bits(st->regmap, MAX30210_INT_EN_REG, + MAX30210_STATUS_TEMP_HI_MASK, state); + default: + return -EINVAL; + } + case IIO_EV_DIR_FALLING: + switch (type) { + case IIO_EV_TYPE_THRESH: + return regmap_assign_bits(st->regmap, MAX30210_INT_EN_REG, + MAX30210_STATUS_TEMP_LO_MASK, state); + default: + return -EINVAL; + } + default: + return -EINVAL; + } +} + +static int max30210_read_raw(struct iio_dev *indio_dev, + struct iio_chan_spec const *chan, int *val, + int *val2, long mask) +{ + struct max30210_state *st = iio_priv(indio_dev); + unsigned int uval; + int ret; + + switch (mask) { + case IIO_CHAN_INFO_SCALE: + *val = 5; + *val2 = 1000; + + return IIO_VAL_FRACTIONAL; + case IIO_CHAN_INFO_SAMP_FREQ: + ret = regmap_read(st->regmap, MAX30210_TEMP_CONF_2_REG, &uval); + if (ret) + return ret; + + uval = FIELD_GET(MAX30210_TEMPCONF2_TEMP_PERIOD_MASK, uval); + + /* + * TEMP_PERIOD is an index into the sampling frequency lookup + * table. Clamp in case the register holds a reserved value. + */ + uval = min_t(unsigned int, uval, ARRAY_SIZE(max30210_samp_freq_avail) - 1); + + *val = max30210_samp_freq_avail[uval][0]; + *val2 = max30210_samp_freq_avail[uval][1]; + + return IIO_VAL_INT_PLUS_MICRO; + case IIO_CHAN_INFO_RAW: { + if (iio_buffer_enabled(indio_dev)) + return -EBUSY; + + IIO_DEV_ACQUIRE_DIRECT_MODE(indio_dev, claim); + if (IIO_DEV_ACQUIRE_FAILED(claim)) + return -EBUSY; + + ret = regmap_write(st->regmap, MAX30210_TEMP_CONV_REG, + MAX30210_TEMPCONV_CONV_T_MASK); + if (ret) + return ret; + + /* + * Wait until CONVERT_T auto-clears. + * Datasheet: + * tBIAS_WU = 260 µs + * tINT = 8 ms + * + * Worst-case conversion ≈ 8.26 ms. + * Use 10 ms timeout for margin. + */ + ret = regmap_read_poll_timeout(st->regmap, MAX30210_TEMP_CONV_REG, uval, + !(uval & MAX30210_TEMPCONV_CONV_T_MASK), + 500, /* poll every 500 µs */ + 10000); /* 10 ms timeout */ + if (ret) + return ret; + + return max30210_read_temp(st->regmap, MAX30210_TEMP_DATA_REG, val); + } + default: + return -EINVAL; + } +} + +static int max30210_read_avail(struct iio_dev *indio_dev, + struct iio_chan_spec const *chan, + const int **vals, int *type, int *length, + long mask) +{ + switch (mask) { + case IIO_CHAN_INFO_SAMP_FREQ: + *vals = &max30210_samp_freq_avail[0][0]; + *type = IIO_VAL_INT_PLUS_MICRO; + *length = ARRAY_SIZE(max30210_samp_freq_avail) * 2; + + return IIO_AVAIL_LIST; + default: + return -EINVAL; + } +} + +static int max30210_write_raw(struct iio_dev *indio_dev, + struct iio_chan_spec const *chan, int val, + int val2, long mask) +{ + struct max30210_state *st = iio_priv(indio_dev); + + switch (mask) { + case IIO_CHAN_INFO_SAMP_FREQ: { + IIO_DEV_ACQUIRE_DIRECT_MODE(indio_dev, claim); + if (IIO_DEV_ACQUIRE_FAILED(claim)) + return -EBUSY; + + if (val < 0 || val2 < 0) + return -EINVAL; + + for (unsigned int i = 0; i < ARRAY_SIZE(max30210_samp_freq_avail); i++) { + if (val != max30210_samp_freq_avail[i][0] || + val2 != max30210_samp_freq_avail[i][1]) + continue; + + return regmap_update_bits(st->regmap, MAX30210_TEMP_CONF_2_REG, + MAX30210_TEMPCONF2_TEMP_PERIOD_MASK, + FIELD_PREP(MAX30210_TEMPCONF2_TEMP_PERIOD_MASK, i)); + } + + return -EINVAL; + } + default: + return -EINVAL; + } +} + +static int max30210_set_watermark(struct iio_dev *indio_dev, unsigned int val) +{ + struct max30210_state *st = iio_priv(indio_dev); + int ret; + + if (val < 1 || val > MAX30210_FIFO_SIZE) + return -EINVAL; + + /* + * FIFO_A_FULL sets the number of empty FIFO slots remaining when the + * A_FULL interrupt fires. For a watermark of N samples, set + * FIFO_A_FULL = FIFO_SIZE - N. + */ + ret = regmap_write(st->regmap, MAX30210_FIFO_CONF_1_REG, + FIELD_PREP(MAX30210_FIFOCONF1_A_FULL_MASK, + MAX30210_FIFO_SIZE - val)); + if (ret) + return ret; + + st->watermark = val; + + return 0; +} + +static ssize_t hwfifo_watermark_show(struct device *dev, + struct device_attribute *devattr, + char *buf) +{ + struct max30210_state *st = iio_priv(dev_to_iio_dev(dev)); + + return sysfs_emit(buf, "%d\n", st->watermark); +} + +IIO_STATIC_CONST_DEVICE_ATTR(hwfifo_watermark_min, "1"); +IIO_STATIC_CONST_DEVICE_ATTR(hwfifo_watermark_max, + __stringify(MAX30210_FIFO_SIZE)); +static IIO_DEVICE_ATTR_RO(hwfifo_watermark, 0); + +static const struct iio_dev_attr *max30210_fifo_attributes[] = { + &iio_dev_attr_hwfifo_watermark_min, + &iio_dev_attr_hwfifo_watermark_max, + &iio_dev_attr_hwfifo_watermark, + NULL +}; + +static int max30210_buffer_preenable(struct iio_dev *indio_dev) +{ + struct max30210_state *st = iio_priv(indio_dev); + int ret; + + /* Enable FIFO-full interrupt */ + ret = regmap_set_bits(st->regmap, MAX30210_INT_EN_REG, + MAX30210_STATUS_A_FULL_MASK); + if (ret) + return ret; + + /* Flush FIFO before starting autonomous conversions */ + ret = regmap_set_bits(st->regmap, MAX30210_FIFO_CONF_2_REG, + MAX30210_FIFOCONF1_FLUSH_FIFO_MASK); + if (ret) + return ret; + + /* Start autonomous temperature conversion */ + return regmap_write(st->regmap, MAX30210_TEMP_CONV_REG, + MAX30210_TEMPCONV_AUTO_MASK | MAX30210_TEMPCONV_CONV_T_MASK); +} + +static int max30210_buffer_postdisable(struct iio_dev *indio_dev) +{ + struct max30210_state *st = iio_priv(indio_dev); + int ret; + + /* Stop autonomous conversion */ + ret = regmap_write(st->regmap, MAX30210_TEMP_CONV_REG, 0x0); + if (ret) + return ret; + + /* Flush FIFO */ + ret = regmap_set_bits(st->regmap, MAX30210_FIFO_CONF_2_REG, + MAX30210_FIFOCONF1_FLUSH_FIFO_MASK); + if (ret) + return ret; + + /* Disable FIFO-full interrupt */ + return regmap_clear_bits(st->regmap, MAX30210_INT_EN_REG, + MAX30210_STATUS_A_FULL_MASK); +} + +static const struct iio_buffer_setup_ops max30210_buffer_ops = { + .preenable = max30210_buffer_preenable, + .postdisable = max30210_buffer_postdisable, +}; + +static const struct iio_info max30210_info = { + .read_raw = max30210_read_raw, + .read_avail = max30210_read_avail, + .write_raw = max30210_write_raw, + .hwfifo_set_watermark = max30210_set_watermark, + .debugfs_reg_access = max30210_reg_access, + .read_event_value = max30210_read_event, + .write_event_value = max30210_write_event, + .write_event_config = max30210_write_event_config, + .read_event_config = max30210_read_event_config, +}; + +static const struct iio_event_spec max30210_events[] = { + { + .type = IIO_EV_TYPE_THRESH, + .dir = IIO_EV_DIR_RISING, + .mask_separate = BIT(IIO_EV_INFO_VALUE) | BIT(IIO_EV_INFO_ENABLE), + }, { + .type = IIO_EV_TYPE_THRESH, + .dir = IIO_EV_DIR_FALLING, + .mask_separate = BIT(IIO_EV_INFO_VALUE) | BIT(IIO_EV_INFO_ENABLE), + }, +}; + +static const struct iio_chan_spec max30210_channel = { + .type = IIO_TEMP, + .info_mask_separate = BIT(IIO_CHAN_INFO_RAW) | + BIT(IIO_CHAN_INFO_SCALE) | + BIT(IIO_CHAN_INFO_SAMP_FREQ), + .info_mask_separate_available = BIT(IIO_CHAN_INFO_SAMP_FREQ), + .scan_index = 0, + .event_spec = max30210_events, + .num_event_specs = ARRAY_SIZE(max30210_events), + .scan_type = { + .sign = 's', + .realbits = 16, + .storagebits = 16, + .endianness = IIO_CPU, + }, +}; + +static int max30210_setup(struct max30210_state *st, struct device *dev) +{ + struct gpio_desc *powerdown_gpio; + unsigned int val; + int ret; + + /* Optional hardware reset via powerdown GPIO */ + powerdown_gpio = devm_gpiod_get_optional(dev, "powerdown", + GPIOD_OUT_HIGH); + if (IS_ERR(powerdown_gpio)) + return dev_err_probe(dev, PTR_ERR(powerdown_gpio), + "failed to request powerdown GPIO\n"); + + if (powerdown_gpio) { + /* Deassert powerdown to power up device */ + gpiod_set_value(powerdown_gpio, 0); + } else { + /* Software reset fallback */ + ret = regmap_set_bits(st->regmap, MAX30210_SYS_CONF_REG, + MAX30210_SYSCONF_RESET_MASK); + if (ret) + return ret; + } + + /* + * Datasheet Figure 6: + * tPU max = 700 µs after power-up or reset before device is ready. + */ + fsleep(700); + + /* Clear status byte */ + return regmap_read(st->regmap, MAX30210_STATUS_REG, &val); +} + +static int max30210_probe(struct i2c_client *client) +{ + struct device *dev = &client->dev; + struct iio_dev *indio_dev; + struct max30210_state *st; + int ret; + + if (!i2c_check_functionality(client->adapter, I2C_FUNC_SMBUS_BYTE_DATA)) + return -EOPNOTSUPP; + + indio_dev = devm_iio_device_alloc(dev, sizeof(*st)); + if (!indio_dev) + return -ENOMEM; + + st = iio_priv(indio_dev); + + ret = devm_regulator_get_enable(dev, "vdd"); + if (ret) + return dev_err_probe(dev, ret, + "Failed to enable vdd regulator.\n"); + + st->regmap = devm_regmap_init_i2c(client, &max30210_regmap); + if (IS_ERR(st->regmap)) + return dev_err_probe(dev, PTR_ERR(st->regmap), + "Failed to allocate regmap.\n"); + + st->watermark = MAX30210_WATERMARK_DEFAULT; + + ret = max30210_setup(st, dev); + if (ret) + return ret; + + indio_dev->modes = INDIO_DIRECT_MODE; + indio_dev->channels = &max30210_channel; + indio_dev->num_channels = 1; + indio_dev->name = "max30210"; + indio_dev->info = &max30210_info; + + ret = devm_iio_kfifo_buffer_setup_ext(dev, indio_dev, &max30210_buffer_ops, + max30210_fifo_attributes); + if (ret) + return ret; + + if (!client->irq) + return dev_err_probe(dev, -ENXIO, "Missing interrupt.\n"); + + ret = devm_request_threaded_irq(dev, client->irq, NULL, + max30210_irq_handler, IRQF_ONESHOT, + indio_dev->name, indio_dev); + if (ret) + return ret; + + return devm_iio_device_register(dev, indio_dev); +} + +static const struct i2c_device_id max30210_id[] = { + { "max30210" }, + { } +}; +MODULE_DEVICE_TABLE(i2c, max30210_id); + +static const struct of_device_id max30210_of_match[] = { + { .compatible = "adi,max30210" }, + { } +}; +MODULE_DEVICE_TABLE(of, max30210_of_match); + +static struct i2c_driver max30210_driver = { + .driver = { + .name = "max30210", + .of_match_table = max30210_of_match, + }, + .probe = max30210_probe, + .id_table = max30210_id, +}; +module_i2c_driver(max30210_driver); + +MODULE_AUTHOR("John Erasmus Mari Geronimo <johnerasmusmari.geronimo@analog.com>"); +MODULE_DESCRIPTION("MAX30210 low-power digital temperature sensor"); +MODULE_LICENSE("GPL"); -- 2.34.1 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH v3 2/2] iio: temperature: add support for Analog Devices MAX30210 2026-09-10 22:12 ` [PATCH v3 2/2] iio: temperature: add support for Analog Devices MAX30210 John Erasmus Mari Geronimo @ 2026-09-10 22:25 ` sashiko-bot 2026-09-11 8:00 ` Andy Shevchenko 2026-09-13 17:59 ` Jonathan Cameron 2 siblings, 0 replies; 9+ messages in thread From: sashiko-bot @ 2026-09-10 22:25 UTC (permalink / raw) To: John Erasmus Mari Geronimo; +Cc: devicetree, robh, conor+dt Thank you for your contribution! Sashiko AI review found 8 potential issue(s) to consider: - [High] The driver uses `regmap_bulk_read` to read from the FIFO, which increments the register address on fallback, corrupting the read. - [High] Threshold events will never trigger unless the FIFO buffer is also enabled, because autonomous conversion is not managed correctly. - [High] Use-after-free on IIO `event_interface` during device removal due to incorrect devm registration order. - [Medium] The driver strictly requires an interrupt, contradicting the commit message claim that interrupt signaling is optional. - [Low] Missing Kconfig dependencies for REGMAP_I2C, IIO_BUFFER, and IIO_KFIFO_BUF. - [Low] Device is not powered down or disabled on driver removal, leading to power leaks. - [Low] Missing `#include <linux/regulator/consumer.h>` causes implicit function declaration. - [Low] Macro naming typo suggests writing to the wrong register. -- commit cfe908c78eef329997beda55cb489b59b1cf8d93 Author: John Erasmus Mari Geronimo <johnerasmusmari.geronimo@analog.com> iio: temperature: add support for Analog Devices MAX30210 This adds support for the Analog Devices MAX30210 I2C temperature sensor. The driver integrates with the IIO framework, providing direct mode temperature conversion, threshold events, and FIFO operation. > --- a/drivers/iio/temperature/Kconfig > +++ b/drivers/iio/temperature/Kconfig > @@ -152,6 +152,16 @@ config MAX30208 > This driver can also be built as a module. If so, the module > will be called max30208. > > +config MAX30210 > + tristate "Analog Devices MAX30210 temperature sensor" > + depends on I2C [Severity: Low] Should this select REGMAP_I2C, IIO_BUFFER, and IIO_KFIFO_BUF? The driver code calls devm_regmap_init_i2c() and devm_iio_kfifo_buffer_setup_ext(). Without these selections, could a build with CONFIG_MAX30210 enabled fail at compile or link time if the user doesn't manually enable them? > --- /dev/null > +++ b/drivers/iio/temperature/max30210.c > @@ -0,0 +1,689 @@ > +// SPDX-License-Identifier: GPL-2.0-only > +/* > + * Analog Devices MAX30210 I2C Temperature Sensor driver > + * > + * Copyright 2026 Analog Devices Inc. > + */ [ ... ] > +#include <linux/regmap.h> > +#include <linux/unaligned.h> > +#include <linux/units.h> [Severity: Low] Should <linux/regulator/consumer.h> be included here? The probe function uses devm_regulator_get_enable(), which might cause an implicit function declaration error on some configurations without this header. > +static void max30210_fifo_read(struct iio_dev *indio_dev) > +{ > + struct max30210_state *st = iio_priv(indio_dev); > + int ret; > + > + ret = regmap_bulk_read(st->regmap, MAX30210_FIFO_DATA_REG, > + st->fifo_buf, > + MAX30210_FIFO_BYTES_PER_SAMPLE * st->watermark); [Severity: High] Could this corrupt data on SMBus-only adapters? The driver uses regmap_bulk_read() to read the FIFO data register but permits probing on adapters that only support I2C_FUNC_SMBUS_BYTE_DATA. On such adapters, regmap falls back to single-byte reads and automatically increments the register address for each byte. Instead of repeatedly reading the FIFO register, this would read sequential configuration registers and push their contents as temperature samples. > +static int max30210_write_event_config(struct iio_dev *indio_dev, > + const struct iio_chan_spec *chan, > + enum iio_event_type type, > + enum iio_event_direction dir, bool state) > +{ > + struct max30210_state *st = iio_priv(indio_dev); > + > + switch (dir) { > + case IIO_EV_DIR_RISING: > + switch (type) { > + case IIO_EV_TYPE_THRESH: > + return regmap_assign_bits(st->regmap, MAX30210_INT_EN_REG, > + MAX30210_STATUS_TEMP_HI_MASK, state); [Severity: High] Will threshold events trigger if the IIO buffer is not enabled? The autonomous conversion bit (MAX30210_TEMPCONV_AUTO_MASK) is only set in max30210_buffer_preenable(). If a user configures and enables a threshold event via sysfs without enabling the buffer, does the device remain in standby and never sample the temperature? > +static int max30210_buffer_preenable(struct iio_dev *indio_dev) > +{ > + struct max30210_state *st = iio_priv(indio_dev); > + int ret; > + > + /* Enable FIFO-full interrupt */ > + ret = regmap_set_bits(st->regmap, MAX30210_INT_EN_REG, > + MAX30210_STATUS_A_FULL_MASK); > + if (ret) > + return ret; > + > + /* Flush FIFO before starting autonomous conversions */ > + ret = regmap_set_bits(st->regmap, MAX30210_FIFO_CONF_2_REG, > + MAX30210_FIFOCONF1_FLUSH_FIFO_MASK); [Severity: Low] Is MAX30210_FIFOCONF1_FLUSH_FIFO_MASK correct here? It is being applied to MAX30210_FIFO_CONF_2_REG. Should this use a FIFOCONF2_ prefixed macro instead to avoid confusion? > +static int max30210_setup(struct max30210_state *st, struct device *dev) > +{ > + struct gpio_desc *powerdown_gpio; > + unsigned int val; > + int ret; > + > + /* Optional hardware reset via powerdown GPIO */ > + powerdown_gpio = devm_gpiod_get_optional(dev, "powerdown", > + GPIOD_OUT_HIGH); > + if (IS_ERR(powerdown_gpio)) > + return dev_err_probe(dev, PTR_ERR(powerdown_gpio), > + "failed to request powerdown GPIO\n"); > + > + if (powerdown_gpio) { > + /* Deassert powerdown to power up device */ > + gpiod_set_value(powerdown_gpio, 0); > + } else { [Severity: Low] Does this leave the hardware drawing power indefinitely on driver unbind? The device is powered up by deasserting the powerdown GPIO, but there doesn't seem to be a corresponding devm action or .remove callback to re-assert it and put the device back into standby when the module is removed. > +static int max30210_probe(struct i2c_client *client) > +{ > + struct device *dev = &client->dev; > + struct iio_dev *indio_dev; > + struct max30210_state *st; > + int ret; [ ... ] > + if (!client->irq) > + return dev_err_probe(dev, -ENXIO, "Missing interrupt.\n"); [Severity: Medium] Does this unconditionally require an interrupt? The commit message mentions "Optional interrupt-driven data ready signaling", but this check causes the probe to fail if no IRQ is provided. Should it fall back gracefully to direct polling mode instead? > + ret = devm_request_threaded_irq(dev, client->irq, NULL, > + max30210_irq_handler, IRQF_ONESHOT, > + indio_dev->name, indio_dev); > + if (ret) > + return ret; > + > + return devm_iio_device_register(dev, indio_dev); > +} [Severity: High] Can this cause a use-after-free on the IIO event_interface during device removal? Because devm resources are cleaned up in LIFO order, devm_iio_device_register() will unregister first (which frees the event_interface), followed later by the IRQ handler shutdown. If an interrupt fires between these two steps, max30210_irq_handler() could call iio_push_event() and dereference the already freed event_interface. -- Sashiko AI review · https://sashiko.dev/#/patchset/cover.1789032019.git.johnerasmusmari.geronimo@analog.com?part=2 ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v3 2/2] iio: temperature: add support for Analog Devices MAX30210 2026-09-10 22:12 ` [PATCH v3 2/2] iio: temperature: add support for Analog Devices MAX30210 John Erasmus Mari Geronimo 2026-09-10 22:25 ` sashiko-bot @ 2026-09-11 8:00 ` Andy Shevchenko 2026-09-13 17:59 ` Jonathan Cameron 2 siblings, 0 replies; 9+ messages in thread From: Andy Shevchenko @ 2026-09-11 8:00 UTC (permalink / raw) To: John Erasmus Mari Geronimo Cc: linux-iio, devicetree, krzk+dt, jic23, dlechner, nuno.sa, Michael.Hennerich, andy, robh, conor+dt On Fri, Sep 11, 2026 at 06:12:17AM +0800, John Erasmus Mari Geronimo wrote: > Add support for the Analog Devices MAX30210 I2C temperature > sensor. > > The driver uses regmap for register access and integrates with > the IIO framework. It supports: > > - Direct mode temperature conversion > - Configurable sampling frequency > - Threshold events > - FIFO operation with IIO kfifo buffer support > - Optional interrupt-driven data ready signaling > > The device provides 16-bit signed temperature data and a > 64-sample FIFO. ... Shouldn't Kconfig select REGMAP_I2C? ... The header block doesn't fully follow IWYU. + array_size.h // ARRAY_SIZE() + bitops.h // BIT(), sign_extend32(), et cetera > +#include <linux/bitfield.h> + delay.h // fsleep() > +#include <linux/gpio/consumer.h> > +#include <linux/i2c.h> > +#include <linux/iio/buffer.h> > +#include <linux/iio/events.h> > +#include <linux/iio/iio.h> > +#include <linux/iio/kfifo_buf.h> > +#include <linux/iio/sysfs.h> It's better to group them out... + minmax.h // min*(), et cetera > +#include <linux/regmap.h> + types.h // uXX, __le16, et cetera > +#include <linux/unaligned.h> > +#include <linux/units.h> > + ...somewhere here. ... > +struct max30210_state { > + struct regmap *regmap; > + u8 watermark; I would swap to make it easier to read the array (which will be aligned). > + /* Raw FIFO byte buffer */ > + u8 fifo_buf[MAX30210_FIFO_BYTES_PER_SAMPLE * MAX30210_FIFO_SIZE]; > +}; ... > +static const struct regmap_config max30210_regmap = { > + .reg_bits = 8, > + .val_bits = 8, > + .max_register = MAX30210_PART_ID_REG, No cache? Why? > +}; ... > +static void max30210_fifo_read(struct iio_dev *indio_dev) > +{ > + struct max30210_state *st = iio_priv(indio_dev); > + int ret; > + > + ret = regmap_bulk_read(st->regmap, MAX30210_FIFO_DATA_REG, > + st->fifo_buf, > + MAX30210_FIFO_BYTES_PER_SAMPLE * st->watermark); > + if (ret) { > + dev_err(&indio_dev->dev, "Failed to read from fifo.\n"); > + return; > + } > + > + for (unsigned int i = 0; i < st->watermark; i++) { > + u32 raw = get_unaligned_be24(&st->fifo_buf[MAX30210_FIFO_BYTES_PER_SAMPLE * i]); > + > + if (raw == MAX30210_FIFO_INVAL_DATA) { > + dev_err_ratelimited(&indio_dev->dev, "Invalid data\n"); > + continue; > + } > + > + s16 temp = (s16)FIELD_GET(MAX30210_FIFO_TEMP_MASK, raw); Defined variable at the proper space, also better to use sign_extend() instead of casting. > + > + iio_push_to_buffers(indio_dev, &temp); > + } > +} ... > +static irqreturn_t max30210_irq_handler(int irq, void *dev_id) > +{ > + struct iio_dev *indio_dev = dev_id; > + struct max30210_state *st = iio_priv(indio_dev); > + unsigned int status; > + int ret; > + > + ret = regmap_read(st->regmap, MAX30210_STATUS_REG, &status); > + if (ret) { > + dev_err(&indio_dev->dev, "Status read failed\n"); Imagine if this is an intermittent issue, this will flood the logs very quickly. > + return IRQ_NONE; > + } > + > + if (status & MAX30210_STATUS_A_FULL_MASK) > + max30210_fifo_read(indio_dev); > + > + if (status & MAX30210_STATUS_TEMP_HI_MASK) > + iio_push_event(indio_dev, > + IIO_UNMOD_EVENT_CODE(IIO_TEMP, 0, > + IIO_EV_TYPE_THRESH, > + IIO_EV_DIR_RISING), > + iio_get_time_ns(indio_dev)); > + > + if (status & MAX30210_STATUS_TEMP_LO_MASK) > + iio_push_event(indio_dev, > + IIO_UNMOD_EVENT_CODE(IIO_TEMP, 0, > + IIO_EV_TYPE_THRESH, > + IIO_EV_DIR_FALLING), > + iio_get_time_ns(indio_dev)); > + > + return IRQ_HANDLED; > +} ... > +static int max30210_read_raw(struct iio_dev *indio_dev, > + struct iio_chan_spec const *chan, int *val, > + int *val2, long mask) > +{ > + struct max30210_state *st = iio_priv(indio_dev); > + unsigned int uval; > + int ret; > + > + switch (mask) { > + case IIO_CHAN_INFO_SCALE: > + *val = 5; > + *val2 = 1000; KILO? MILLI? > + return IIO_VAL_FRACTIONAL; > + case IIO_CHAN_INFO_SAMP_FREQ: > + ret = regmap_read(st->regmap, MAX30210_TEMP_CONF_2_REG, &uval); > + if (ret) > + return ret; > + > + uval = FIELD_GET(MAX30210_TEMPCONF2_TEMP_PERIOD_MASK, uval); > + > + /* > + * TEMP_PERIOD is an index into the sampling frequency lookup > + * table. Clamp in case the register holds a reserved value. > + */ > + uval = min_t(unsigned int, uval, ARRAY_SIZE(max30210_samp_freq_avail) - 1); No min_t(). Also add a new temporary variable for the value from the register, so semantically uval wouldn't be overloaded. > + *val = max30210_samp_freq_avail[uval][0]; > + *val2 = max30210_samp_freq_avail[uval][1]; > + > + return IIO_VAL_INT_PLUS_MICRO; > + case IIO_CHAN_INFO_RAW: { > + if (iio_buffer_enabled(indio_dev)) > + return -EBUSY; > + > + IIO_DEV_ACQUIRE_DIRECT_MODE(indio_dev, claim); > + if (IIO_DEV_ACQUIRE_FAILED(claim)) > + return -EBUSY; > + > + ret = regmap_write(st->regmap, MAX30210_TEMP_CONV_REG, > + MAX30210_TEMPCONV_CONV_T_MASK); > + if (ret) > + return ret; > + > + /* > + * Wait until CONVERT_T auto-clears. > + * Datasheet: > + * tBIAS_WU = 260 µs > + * tINT = 8 ms > + * > + * Worst-case conversion ≈ 8.26 ms. > + * Use 10 ms timeout for margin. > + */ > + ret = regmap_read_poll_timeout(st->regmap, MAX30210_TEMP_CONV_REG, uval, > + !(uval & MAX30210_TEMPCONV_CONV_T_MASK), > + 500, /* poll every 500 µs */ > + 10000); /* 10 ms timeout */ 10 * USEC_PER_MSEC (will require time.h to be included). > + if (ret) > + return ret; > + > + return max30210_read_temp(st->regmap, MAX30210_TEMP_DATA_REG, val); > + } > + default: > + return -EINVAL; > + } > +} ... > +static int max30210_write_raw(struct iio_dev *indio_dev, > + struct iio_chan_spec const *chan, int val, > + int val2, long mask) Split logically... struct iio_chan_spec const *chan, int val, int val2, long mask) (I am surprised that this is v3 and too many mistakes that linux-iio@ mailing list is full of. You may take your time and read the mailing list archives to understand the most common style and API mistakes in IIO contributions.) > +{ > + struct max30210_state *st = iio_priv(indio_dev); > + > + switch (mask) { > + case IIO_CHAN_INFO_SAMP_FREQ: { > + IIO_DEV_ACQUIRE_DIRECT_MODE(indio_dev, claim); > + if (IIO_DEV_ACQUIRE_FAILED(claim)) > + return -EBUSY; > + > + if (val < 0 || val2 < 0) > + return -EINVAL; > + > + for (unsigned int i = 0; i < ARRAY_SIZE(max30210_samp_freq_avail); i++) { > + if (val != max30210_samp_freq_avail[i][0] || > + val2 != max30210_samp_freq_avail[i][1]) > + continue; > + > + return regmap_update_bits(st->regmap, MAX30210_TEMP_CONF_2_REG, > + MAX30210_TEMPCONF2_TEMP_PERIOD_MASK, > + FIELD_PREP(MAX30210_TEMPCONF2_TEMP_PERIOD_MASK, i)); > + } > + > + return -EINVAL; > + } > + default: > + return -EINVAL; > + } > +} ... > +static ssize_t hwfifo_watermark_show(struct device *dev, > + struct device_attribute *devattr, > + char *buf) > +{ > + struct max30210_state *st = iio_priv(dev_to_iio_dev(dev)); > + > + return sysfs_emit(buf, "%d\n", st->watermark); > +} ^^^ (here, see below) > + > +IIO_STATIC_CONST_DEVICE_ATTR(hwfifo_watermark_min, "1"); > +IIO_STATIC_CONST_DEVICE_ATTR(hwfifo_watermark_max, > + __stringify(MAX30210_FIFO_SIZE)); > +static IIO_DEVICE_ATTR_RO(hwfifo_watermark, 0); Move this closer to the callback. ... > + ret = devm_regulator_get_enable(dev, "vdd"); > + if (ret) > + return dev_err_probe(dev, ret, > + "Failed to enable vdd regulator.\n"); It's fine to have it on a single line. ... > +static const struct i2c_device_id max30210_id[] = { > + { "max30210" }, C99 initialisers. > + { } > +}; -- With Best Regards, Andy Shevchenko ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v3 2/2] iio: temperature: add support for Analog Devices MAX30210 2026-09-10 22:12 ` [PATCH v3 2/2] iio: temperature: add support for Analog Devices MAX30210 John Erasmus Mari Geronimo 2026-09-10 22:25 ` sashiko-bot 2026-09-11 8:00 ` Andy Shevchenko @ 2026-09-13 17:59 ` Jonathan Cameron 2 siblings, 0 replies; 9+ messages in thread From: Jonathan Cameron @ 2026-09-13 17:59 UTC (permalink / raw) To: John Erasmus Mari Geronimo Cc: linux-iio, devicetree, krzk+dt, dlechner, nuno.sa, Michael.Hennerich, andy, robh, conor+dt On Fri, 11 Sep 2026 06:12:17 +0800 John Erasmus Mari Geronimo <johnerasmusmari.geronimo@analog.com> wrote: > Add support for the Analog Devices MAX30210 I2C temperature > sensor. > > The driver uses regmap for register access and integrates with > the IIO framework. It supports: > > - Direct mode temperature conversion > - Configurable sampling frequency > - Threshold events > - FIFO operation with IIO kfifo buffer support > - Optional interrupt-driven data ready signaling > > The device provides 16-bit signed temperature data and a > 64-sample FIFO. > > Signed-off-by: John Erasmus Mari Geronimo <johnerasmusmari.geronimo@analog.com> Hi John Various comments inline Jonathan > diff --git a/drivers/iio/temperature/max30210.c b/drivers/iio/temperature/max30210.c > new file mode 100644 > index 0000000000000..07ff85d6d4848 > --- /dev/null > +++ b/drivers/iio/temperature/max30210.c > @@ -0,0 +1,689 @@ > +// SPDX-License-Identifier: GPL-2.0-only > +/* > + * Analog Devices MAX30210 I2C Temperature Sensor driver > + * > + * Copyright 2026 Analog Devices Inc. > + */ > + > +#include <linux/bitfield.h> > +#include <linux/gpio/consumer.h> > +#include <linux/i2c.h> > +#include <linux/iio/buffer.h> > +#include <linux/iio/events.h> > +#include <linux/iio/iio.h> > +#include <linux/iio/kfifo_buf.h> > +#include <linux/iio/sysfs.h> > +#include <linux/regmap.h> > +#include <linux/unaligned.h> > +#include <linux/units.h> > + > +#define MAX30210_STATUS_REG 0x00 Up to you but I'm very much a fan of register address and fields together in the code, using a bit of extra whitespace to make it obvious what is going on. E.g. #define MAX30210_STATUS_REG 0x00 #define MAX30210_STATUS_A_FULL_MASK BIT(7) #define MAX30210_STATUS_TEMP_RDY_MASK BIT(6) #define MAX30210_STATUS_TEMP_DEC_MASK BIT(5) #define MAX30210_STATUS_TEMP_INC_MASK BIT(4) #define MAX30210_STATUS_TEMP_LO_MASK BIT(3) #define MAX30210_STATUS_TEMP_HI_MASK BIT(2) #define MAX30210_STATUS_PWR_RDY_MASK BIT(0) #define MAX30210_INT_EN_REG 0x02 ... That means everything related to the register is one place which saves me jumping around when reviewing. > +#define MAX30210_INT_EN_REG 0x02 > +#define MAX30210_FIFO_DATA_REG 0x08 > +#define MAX30210_FIFO_CONF_1_REG 0x09 > +#define MAX30210_FIFO_CONF_2_REG 0x0A > +#define MAX30210_SYS_CONF_REG 0x11 > +#define MAX30210_PIN_CONF_REG 0x12 > +#define MAX30210_TEMP_ALM_HI_REG 0x22 > +#define MAX30210_TEMP_ALM_LO_REG 0x24 > +#define MAX30210_TEMP_INC_THRESH_REG 0x26 > +#define MAX30210_TEMP_DEC_THRESH_REG 0x27 > +#define MAX30210_TEMP_CONF_1_REG 0x28 > +#define MAX30210_TEMP_CONF_2_REG 0x29 > +#define MAX30210_TEMP_CONV_REG 0x2A > +#define MAX30210_TEMP_DATA_REG 0x2B > +#define MAX30210_TEMP_SLOPE_REG 0x2D > +#define MAX30210_UNIQUE_ID_REG 0x30 > +#define MAX30210_PART_ID_REG 0xFF > + > +#define MAX30210_STATUS_A_FULL_MASK BIT(7) > +#define MAX30210_STATUS_TEMP_RDY_MASK BIT(6) > +#define MAX30210_STATUS_TEMP_DEC_MASK BIT(5) > +#define MAX30210_STATUS_TEMP_INC_MASK BIT(4) > +#define MAX30210_STATUS_TEMP_LO_MASK BIT(3) > +#define MAX30210_STATUS_TEMP_HI_MASK BIT(2) > +#define MAX30210_STATUS_PWR_RDY_MASK BIT(0) > + > +#define MAX30210_FIFOCONF1_A_FULL_MASK GENMASK(5, 0) > +#define MAX30210_FIFOCONF1_FLUSH_FIFO_MASK BIT(4) > + > +#define MAX30210_SYSCONF_RESET_MASK BIT(0) We often drop the MASK postfix for single bit flags where the meaning is obvious like this one. #define MAX30210_SYSCONF_RESET BIT(0) Is fine and feels more normal when you use it in the code. Be careful though when doing this. Sometimes a field is simply one that takes only values 0 and 1 but is not representing a boolean. Those ones need the _MASK postfix and use of FIELD_GET / FIELD_PREP. A recent example of that was a register bank selector in another driver. There were only two banks so it was one bit but the code was easier to read with it being via FIELD_PREP(_BANK_MASK, 0) etc > + > +#define MAX30210_PINCONF_EXT_CNV_EN_MASK BIT(7) > +#define MAX30210_PINCONF_EXT_CVT_ICFG_MASK BIT(6) > +#define MAX30210_PINCONF_INT_FCFG_MASK GENMASK(3, 2) > +#define MAX30210_PINCONF_INT_OCFG_MASK GENMASK(1, 0) > + > +static int max30210_read_raw(struct iio_dev *indio_dev, > + struct iio_chan_spec const *chan, int *val, > + int *val2, long mask) > +{ > + struct max30210_state *st = iio_priv(indio_dev); > + unsigned int uval; > + int ret; > + > + switch (mask) { > + case IIO_CHAN_INFO_SCALE: > + *val = 5; > + *val2 = 1000; > + > + return IIO_VAL_FRACTIONAL; > + case IIO_CHAN_INFO_SAMP_FREQ: > + ret = regmap_read(st->regmap, MAX30210_TEMP_CONF_2_REG, &uval); > + if (ret) > + return ret; > + > + uval = FIELD_GET(MAX30210_TEMPCONF2_TEMP_PERIOD_MASK, uval); > + > + /* > + * TEMP_PERIOD is an index into the sampling frequency lookup > + * table. Clamp in case the register holds a reserved value. > + */ > + uval = min_t(unsigned int, uval, ARRAY_SIZE(max30210_samp_freq_avail) - 1); min() without very good reasons. > + > + *val = max30210_samp_freq_avail[uval][0]; > + *val2 = max30210_samp_freq_avail[uval][1]; > + > + return IIO_VAL_INT_PLUS_MICRO; > + case IIO_CHAN_INFO_RAW: { > + if (iio_buffer_enabled(indio_dev)) > + return -EBUSY; > + > + IIO_DEV_ACQUIRE_DIRECT_MODE(indio_dev, claim); > + if (IIO_DEV_ACQUIRE_FAILED(claim)) > + return -EBUSY; > + > + ret = regmap_write(st->regmap, MAX30210_TEMP_CONV_REG, > + MAX30210_TEMPCONV_CONV_T_MASK); > + if (ret) > + return ret; > + > + /* > + * Wait until CONVERT_T auto-clears. > + * Datasheet: > + * tBIAS_WU = 260 µs > + * tINT = 8 ms > + * > + * Worst-case conversion ≈ 8.26 ms. > + * Use 10 ms timeout for margin. > + */ > + ret = regmap_read_poll_timeout(st->regmap, MAX30210_TEMP_CONV_REG, uval, > + !(uval & MAX30210_TEMPCONV_CONV_T_MASK), > + 500, /* poll every 500 µs */ > + 10000); /* 10 ms timeout */ > + if (ret) > + return ret; > + > + return max30210_read_temp(st->regmap, MAX30210_TEMP_DATA_REG, val); > + } > + default: > + return -EINVAL; > + } > +} > + > +static int max30210_write_raw(struct iio_dev *indio_dev, > + struct iio_chan_spec const *chan, int val, > + int val2, long mask) > +{ > + struct max30210_state *st = iio_priv(indio_dev); > + > + switch (mask) { > + case IIO_CHAN_INFO_SAMP_FREQ: { > + IIO_DEV_ACQUIRE_DIRECT_MODE(indio_dev, claim); > + if (IIO_DEV_ACQUIRE_FAILED(claim)) > + return -EBUSY; > + > + if (val < 0 || val2 < 0) > + return -EINVAL; Not important but I'd move this check before the DIRECT_MODE claim as it has nothing to do with device state. > + > + for (unsigned int i = 0; i < ARRAY_SIZE(max30210_samp_freq_avail); i++) { > + if (val != max30210_samp_freq_avail[i][0] || > + val2 != max30210_samp_freq_avail[i][1]) > + continue; > + > + return regmap_update_bits(st->regmap, MAX30210_TEMP_CONF_2_REG, > + MAX30210_TEMPCONF2_TEMP_PERIOD_MASK, > + FIELD_PREP(MAX30210_TEMPCONF2_TEMP_PERIOD_MASK, i)); > + } > + > + return -EINVAL; > + } > + default: > + return -EINVAL; > + } > +} > + > +static int max30210_buffer_preenable(struct iio_dev *indio_dev) > +{ > + struct max30210_state *st = iio_priv(indio_dev); > + int ret; > + > + /* Enable FIFO-full interrupt */ More comments to think about whether they add anything useful over the code. If they do maybe the defines need their names to be tweaked! E.g. ALMOST_FULL would be clearer. You don't need to exactly match datasheets where space demands etc may have lead to things getting too abbreviated to be useful! > + ret = regmap_set_bits(st->regmap, MAX30210_INT_EN_REG, > + MAX30210_STATUS_A_FULL_MASK); > + if (ret) > + return ret; > + > + /* Flush FIFO before starting autonomous conversions */ > + ret = regmap_set_bits(st->regmap, MAX30210_FIFO_CONF_2_REG, > + MAX30210_FIFOCONF1_FLUSH_FIFO_MASK); > + if (ret) > + return ret; > + > + /* Start autonomous temperature conversion */ > + return regmap_write(st->regmap, MAX30210_TEMP_CONV_REG, > + MAX30210_TEMPCONV_AUTO_MASK | MAX30210_TEMPCONV_CONV_T_MASK); If you do use MASK prefix, then I'd expect to always have FIELD_PREP() involved. So another reason to drop _MASK from these things that have obvious meaning without. Even then I'd be temped to use FIELD_PREP simply to align with the off case I mention below. > +} > + > +static int max30210_buffer_postdisable(struct iio_dev *indio_dev) > +{ > + struct max30210_state *st = iio_priv(indio_dev); > + int ret; > + > + /* Stop autonomous conversion */ Not obvious why you'd write the whole register. Perhaps specify that 0 as FIELD_PREP(MAX30210_TEMP_CONV_AUTO, 0) | FIELD_PREP(MAX30210_TEMP_CONV_T, 0), Compiler can flatten that to 0. > + ret = regmap_write(st->regmap, MAX30210_TEMP_CONV_REG, 0x0); > + if (ret) > + return ret; > + > + /* Flush FIFO */ > + ret = regmap_set_bits(st->regmap, MAX30210_FIFO_CONF_2_REG, > + MAX30210_FIFOCONF1_FLUSH_FIFO_MASK); > + if (ret) > + return ret; > + > + /* Disable FIFO-full interrupt */ > + return regmap_clear_bits(st->regmap, MAX30210_INT_EN_REG, > + MAX30210_STATUS_A_FULL_MASK); Similar to below, the use of _MASK postfix for a flag like this to me makes the code harder to read because I feel a need to go check that it is just one bit. Anyhow, that applies in lots of places. > +} > +static int max30210_setup(struct max30210_state *st, struct device *dev) > +{ > + struct gpio_desc *powerdown_gpio; > + unsigned int val; > + int ret; > + > + /* Optional hardware reset via powerdown GPIO */ That is kind of obvious from the code so I'd drop the comment. > + powerdown_gpio = devm_gpiod_get_optional(dev, "powerdown", > + GPIOD_OUT_HIGH); It is fine to go a bit long on lines if it helps readability. Here the gain is minor but it's only a few chars long. > + if (IS_ERR(powerdown_gpio)) > + return dev_err_probe(dev, PTR_ERR(powerdown_gpio), > + "failed to request powerdown GPIO\n"); > + > + if (powerdown_gpio) { > + /* Deassert powerdown to power up device */ > + gpiod_set_value(powerdown_gpio, 0); > + } else { > + /* Software reset fallback */ Also obvious. Check all your comments for ones that are saying things that are naturally true. > + ret = regmap_set_bits(st->regmap, MAX30210_SYS_CONF_REG, > + MAX30210_SYSCONF_RESET_MASK); Comment at the top about use of _MASK postfix was from seeing this line. > + if (ret) > + return ret; > + } > + > + /* > + * Datasheet Figure 6: > + * tPU max = 700 µs after power-up or reset before device is ready. > + */ > + fsleep(700); > + > + /* Clear status byte */ This is a good comment so keep it. Not obvious to anyone seeing the code that the register is read to clear. > + return regmap_read(st->regmap, MAX30210_STATUS_REG, &val); > +} > + > +static int max30210_probe(struct i2c_client *client) > +{ > + struct device *dev = &client->dev; > + struct iio_dev *indio_dev; > + struct max30210_state *st; > + int ret; > + > + if (!i2c_check_functionality(client->adapter, I2C_FUNC_SMBUS_BYTE_DATA)) > + return -EOPNOTSUPP; When I see one of these I immediate search for uses of smbus functions to check it's right. Obviously here they are all hidden by regmap which got me wondering why it wasn't regmap doing this check... So https://elixir.bootlin.com/linux/v7.2.5/source/drivers/base/regmap/regmap-i2c.c#L350 for val_bits = 8 and reg_bits = 8 there are two possible paths. else if (config->val_bits == 8 && config->reg_bits == 8 && i2c_check_functionality(i2c->adapter, I2C_FUNC_SMBUS_I2C_BLOCK)) bus = ®map_i2c_smbus_i2c_block; } or else if (config->val_bits == 8 && config->reg_bits == 8 && i2c_check_functionality(i2c->adapter, I2C_FUNC_SMBUS_BYTE_DATA)) bus = ®map_smbus_byte; } The first one relies on auto increment behaviour for multi reg reads. The second doesn't. I guess this works because a device that doesn't do autoincrement reads won't have a driver that issues them. Anyhow upshot is it is already checked, so you don't need another check in the driver. At somepoint I'll do a sweep for these and remove any that might get cut and paste into new drivers. > + > + indio_dev = devm_iio_device_alloc(dev, sizeof(*st)); > + if (!indio_dev) > + return -ENOMEM; ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v3 0/2] Add support for Analog Devices MAX30210 2026-09-10 22:12 ` [PATCH v3 0/2] Add support for Analog Devices MAX30210 John Erasmus Mari Geronimo 2026-09-10 22:12 ` [PATCH v3 1/2] dt-bindings: iio: temperature: add ADI MAX30210 John Erasmus Mari Geronimo 2026-09-10 22:12 ` [PATCH v3 2/2] iio: temperature: add support for Analog Devices MAX30210 John Erasmus Mari Geronimo @ 2026-09-11 7:45 ` Andy Shevchenko 2026-09-13 17:25 ` Jonathan Cameron 3 siblings, 0 replies; 9+ messages in thread From: Andy Shevchenko @ 2026-09-11 7:45 UTC (permalink / raw) To: John Erasmus Mari Geronimo Cc: linux-iio, devicetree, krzk+dt, jic23, dlechner, nuno.sa, Michael.Hennerich, andy, robh, conor+dt On Fri, Sep 11, 2026 at 06:12:15AM +0800, John Erasmus Mari Geronimo wrote: > Add IIO support and device-tree bindings for the Analog Devices MAX30210 > low-power digital temperature sensor. This doesn't explain why a brand new driver is required. We have already tons of maxXXXX drivers in the same folder, do they not suit to host the support of a new device? > Changes since v2: > - Fix FIFO byte-count handling and sample decoding. > - Fix IIO debug register read/write access. > - Validate event threshold values and sampling-frequency register values. > - Return the correct sampling-frequency format and reject direct reads while > buffered capture is enabled. > - Clean up the Kconfig entry and device-tree supply declaration. Changelog would be good to have a link to the previous version on lore.kernel.org. -- With Best Regards, Andy Shevchenko ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v3 0/2] Add support for Analog Devices MAX30210 2026-09-10 22:12 ` [PATCH v3 0/2] Add support for Analog Devices MAX30210 John Erasmus Mari Geronimo ` (2 preceding siblings ...) 2026-09-11 7:45 ` [PATCH v3 0/2] Add " Andy Shevchenko @ 2026-09-13 17:25 ` Jonathan Cameron 3 siblings, 0 replies; 9+ messages in thread From: Jonathan Cameron @ 2026-09-13 17:25 UTC (permalink / raw) To: John Erasmus Mari Geronimo Cc: linux-iio, devicetree, krzk+dt, dlechner, nuno.sa, Michael.Hennerich, andy, robh, conor+dt On Fri, 11 Sep 2026 06:12:15 +0800 John Erasmus Mari Geronimo <johnerasmusmari.geronimo@analog.com> wrote: > Add IIO support and device-tree bindings for the Analog Devices MAX30210 > low-power digital temperature sensor. Temperatures sensors submitted to IIO always need some descriptive text in the cover letter to explain why they should be in IIO rather than hwmon. Note I raised this on v1 and it's still not here. Jonathan > > Changes since v2: > - Fix FIFO byte-count handling and sample decoding. > - Fix IIO debug register read/write access. > - Validate event threshold values and sampling-frequency register values. > - Return the correct sampling-frequency format and reject direct reads while > buffered capture is enabled. > - Clean up the Kconfig entry and device-tree supply declaration. > > John Erasmus Mari Geronimo (2): > dt-bindings: iio: temperature: add ADI MAX30210 > iio: temperature: add support for Analog Devices MAX30210 > > .../iio/temperature/adi,max30210.yaml | 61 ++ > MAINTAINERS | 8 + > drivers/iio/temperature/Kconfig | 10 + > drivers/iio/temperature/Makefile | 1 + > drivers/iio/temperature/max30210.c | 689 ++++++++++++++++++ > 5 files changed, 769 insertions(+) > create mode 100644 Documentation/devicetree/bindings/iio/temperature/adi,max30210.yaml > create mode 100644 drivers/iio/temperature/max30210.c > ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2026-09-13 18:00 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <20260304122509.67931-1-johnerasmusmari.geronimo@analog.com>
2026-09-10 22:12 ` [PATCH v3 0/2] Add support for Analog Devices MAX30210 John Erasmus Mari Geronimo
2026-09-10 22:12 ` [PATCH v3 1/2] dt-bindings: iio: temperature: add ADI MAX30210 John Erasmus Mari Geronimo
2026-09-13 8:59 ` Krzysztof Kozlowski
2026-09-10 22:12 ` [PATCH v3 2/2] iio: temperature: add support for Analog Devices MAX30210 John Erasmus Mari Geronimo
2026-09-10 22:25 ` sashiko-bot
2026-09-11 8:00 ` Andy Shevchenko
2026-09-13 17:59 ` Jonathan Cameron
2026-09-11 7:45 ` [PATCH v3 0/2] Add " Andy Shevchenko
2026-09-13 17:25 ` Jonathan Cameron
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox