This series adds support and documentation for the TI TPS389008, TPS389006 and TPS389004 voltage monitor IC's. This I2C device provides 8 bit ADC conversion result for all input channels. The proposed driver implements the logic to perform the ADC read. The features this driver does not support (alarms and thresholds for the alarms) have been documented in the "Known Issues" section. The complete supported functionality has been tested with a TPS389008 and TPS389006 voltage monitors connected to a Raspberry Pi 4. Different device tree node definitions have been tested with success. Signed-off-by: Flaviu Nistor <flaviu.nistor@xxxxxxxxx> Flaviu Nistor (2): hwmon: Add support for TI TPS389008 dt-bindings: hwmon: Add TI TPS389008 .../bindings/hwmon/ti,tps389008.yaml | 140 ++++++ Documentation/hwmon/index.rst | 1 + Documentation/hwmon/tps389008.rst | 56 +++ MAINTAINERS | 8 + drivers/hwmon/Kconfig | 10 + drivers/hwmon/Makefile | 1 + drivers/hwmon/tps389008.c | 466 ++++++++++++++++++ 7 files changed, 682 insertions(+) create mode 100644 Documentation/devicetree/bindings/hwmon/ti,tps389008.yaml create mode 100644 Documentation/hwmon/tps389008.rst create mode 100644 drivers/hwmon/tps389008.c -- 2.43.0