Re: [PATCH 0/5] hwmon: Add TSC1641 I2C power monitor driver

From: Guenter Roeck

Date: Wed Oct 22 2025 - 10:07:27 EST


On 10/21/25 21:47, Igor Reznichenko wrote:
This patch series adds support for the ST Microelectronics TSC1641
I2C power monitor. The TSC1641 provides bus voltage, current, power,
and temperature measurements via the hwmon subsystem. The driver
supports optional ALERT pin polarity configuration and exposes the
shunt resistor value and raw shunt voltage via sysfs.

Tested on Raspberry Pi 3B+ with a TSC1641 evaluation board.

Igor Reznichenko (5):
drivers/hwmon: Add TSC1641 I2C power monitor driver
drivers/hwmon: Add Kconfig entry for TSC1641
drivers/hwmon: Add TSC1641 module to Makefile
Documentation/hwmon: Add TSC1641 driver documentation

Please squash all of the above into a single patch.

Documentation/devicetree/bindings/hwmon: Add TSC1641 binding

This patch should come first.

Thanks,
Guenter


.../devicetree/bindings/hwmon/st,tsc1641.yaml | 54 ++
Documentation/hwmon/index.rst | 1 +
Documentation/hwmon/tsc1641.rst | 73 ++
drivers/hwmon/Kconfig | 12 +
drivers/hwmon/Makefile | 1 +
drivers/hwmon/tsc1641.c | 801 ++++++++++++++++++
6 files changed, 942 insertions(+)
create mode 100644 Documentation/devicetree/bindings/hwmon/st,tsc1641.yaml
create mode 100644 Documentation/hwmon/tsc1641.rst
create mode 100644 drivers/hwmon/tsc1641.c