1*5def4c47SEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause) 2*5def4c47SEmmanuel Vadot%YAML 1.2 3*5def4c47SEmmanuel Vadot--- 4*5def4c47SEmmanuel Vadot 5*5def4c47SEmmanuel Vadot$id: http://devicetree.org/schemas/hwmon/ti,tps23861.yaml# 6*5def4c47SEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml# 7*5def4c47SEmmanuel Vadot 8*5def4c47SEmmanuel Vadottitle: TI TPS23861 PoE PSE 9*5def4c47SEmmanuel Vadot 10*5def4c47SEmmanuel Vadotmaintainers: 11*5def4c47SEmmanuel Vadot - Robert Marko <robert.marko@sartura.hr> 12*5def4c47SEmmanuel Vadot 13*5def4c47SEmmanuel Vadotdescription: | 14*5def4c47SEmmanuel Vadot The TPS23861 is a IEEE 802.3at Quad Port Power-over-Ethernet PSE Controller. 15*5def4c47SEmmanuel Vadot 16*5def4c47SEmmanuel Vadot Datasheets: 17*5def4c47SEmmanuel Vadot https://www.ti.com/lit/gpn/tps23861 18*5def4c47SEmmanuel Vadot 19*5def4c47SEmmanuel Vadot 20*5def4c47SEmmanuel Vadotproperties: 21*5def4c47SEmmanuel Vadot compatible: 22*5def4c47SEmmanuel Vadot enum: 23*5def4c47SEmmanuel Vadot - ti,tps23861 24*5def4c47SEmmanuel Vadot 25*5def4c47SEmmanuel Vadot reg: 26*5def4c47SEmmanuel Vadot maxItems: 1 27*5def4c47SEmmanuel Vadot 28*5def4c47SEmmanuel Vadot shunt-resistor-micro-ohms: 29*5def4c47SEmmanuel Vadot description: The value of curent sense resistor in microohms. 30*5def4c47SEmmanuel Vadot default: 255000 31*5def4c47SEmmanuel Vadot minimum: 250000 32*5def4c47SEmmanuel Vadot maximum: 255000 33*5def4c47SEmmanuel Vadot 34*5def4c47SEmmanuel Vadotrequired: 35*5def4c47SEmmanuel Vadot - compatible 36*5def4c47SEmmanuel Vadot - reg 37*5def4c47SEmmanuel Vadot 38*5def4c47SEmmanuel VadotadditionalProperties: false 39*5def4c47SEmmanuel Vadot 40*5def4c47SEmmanuel Vadotexamples: 41*5def4c47SEmmanuel Vadot - | 42*5def4c47SEmmanuel Vadot i2c { 43*5def4c47SEmmanuel Vadot #address-cells = <1>; 44*5def4c47SEmmanuel Vadot #size-cells = <0>; 45*5def4c47SEmmanuel Vadot 46*5def4c47SEmmanuel Vadot tps23861@30 { 47*5def4c47SEmmanuel Vadot compatible = "ti,tps23861"; 48*5def4c47SEmmanuel Vadot reg = <0x30>; 49*5def4c47SEmmanuel Vadot shunt-resistor-micro-ohms = <255000>; 50*5def4c47SEmmanuel Vadot }; 51*5def4c47SEmmanuel Vadot }; 52