brintos

brintos / linux-shallow public Read only

0
0
Text · 996 B · f58248c Raw
55 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)2%YAML 1.23---4 5$id: http://devicetree.org/schemas/hwmon/ti,tps23861.yaml#6$schema: http://devicetree.org/meta-schemas/core.yaml#7 8title: TI TPS23861 PoE PSE9 10maintainers:11  - Robert Marko <robert.marko@sartura.hr>12 13description: |14  The TPS23861 is a IEEE 802.3at Quad Port Power-over-Ethernet PSE Controller.15 16  Datasheets:17  https://www.ti.com/lit/gpn/tps2386118 19 20properties:21  compatible:22    enum:23      - ti,tps2386124 25  reg:26    maxItems: 127 28  shunt-resistor-micro-ohms:29    description: The value of current sense resistor in microohms.30    default: 25500031    minimum: 25000032    maximum: 25500033 34required:35  - compatible36  - reg37 38allOf:39  - $ref: hwmon-common.yaml#40 41unevaluatedProperties: false42 43examples:44  - |45    i2c {46        #address-cells = <1>;47        #size-cells = <0>;48 49        tps23861@30 {50            compatible = "ti,tps23861";51            reg = <0x30>;52            shunt-resistor-micro-ohms = <255000>;53        };54    };55