Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

dt-bindings: hwmon: pmbus: add max17616

Add device tree documentation for MAX17616/MAX17616A current-limiter
with overvoltage/surge, undervoltage, reverse polarity, loss of ground
protection with PMBus interface.

Signed-off-by: Kim Seer Paller <kimseer.paller@analog.com>
Acked-by: Conor Dooley <conor.dooley@microchip.com>
Link: https://lore.kernel.org/r/20250930-upstream-max17616-v1-1-1525a85f126c@analog.com
Signed-off-by: Guenter Roeck <linux@roeck-us.net>

authored by

Kim Seer Paller and committed by
Guenter Roeck
1288ea95 a79472e3

+55
+48
Documentation/devicetree/bindings/hwmon/pmbus/adi,max17616.yaml
··· 1 + # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2 + %YAML 1.2 3 + --- 4 + $id: http://devicetree.org/schemas/hwmon/pmbus/adi,max17616.yaml# 5 + $schema: http://devicetree.org/meta-schemas/core.yaml# 6 + 7 + title: Analog Devices MAX17616/MAX17616A Current-Limiter with PMBus Interface 8 + 9 + maintainers: 10 + - Kim Seer Paller <kimseer.paller@analog.com> 11 + 12 + description: | 13 + The MAX17616/MAX17616A is a 3V to 80V, 7A current-limiter with overvoltage, 14 + surge, undervoltage, reverse polarity, and loss of ground protection. It allows 15 + monitoring of input/output voltage, output current and temperature through the 16 + PMBus serial interface. 17 + Datasheet: 18 + https://www.analog.com/en/products/max17616.html 19 + 20 + properties: 21 + compatible: 22 + const: adi,max17616 23 + 24 + reg: 25 + maxItems: 1 26 + 27 + vcc-supply: true 28 + 29 + required: 30 + - compatible 31 + - reg 32 + - vcc-supply 33 + 34 + additionalProperties: false 35 + 36 + examples: 37 + - | 38 + i2c { 39 + #address-cells = <1>; 40 + #size-cells = <0>; 41 + 42 + hwmon@16 { 43 + compatible = "adi,max17616"; 44 + reg = <0x16>; 45 + vcc-supply = <&vcc>; 46 + }; 47 + }; 48 + ...
+7
MAINTAINERS
··· 15165 15165 F: Documentation/hwmon/max15301.rst 15166 15166 F: drivers/hwmon/pmbus/max15301.c 15167 15167 15168 + MAX17616 HARDWARE MONITOR DRIVER 15169 + M: Kim Seer Paller <kimseer.paller@analog.com> 15170 + L: linux-hwmon@vger.kernel.org 15171 + S: Supported 15172 + W: https://ez.analog.com/linux-software-drivers 15173 + F: Documentation/devicetree/bindings/hwmon/pmbus/adi,max17616.yaml 15174 + 15168 15175 MAX2175 SDR TUNER DRIVER 15169 15176 M: Ramesh Shanmugasundaram <rashanmu@gmail.com> 15170 15177 L: linux-media@vger.kernel.org