Back to home page

OSCL-LXR

 
 

    


0001 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
0002 %YAML 1.2
0003 ---
0004 
0005 $id: http://devicetree.org/schemas/hwmon/ti,tps23861.yaml#
0006 $schema: http://devicetree.org/meta-schemas/core.yaml#
0007 
0008 title: TI TPS23861 PoE PSE
0009 
0010 maintainers:
0011   - Robert Marko <robert.marko@sartura.hr>
0012 
0013 description: |
0014   The TPS23861 is a IEEE 802.3at Quad Port Power-over-Ethernet PSE Controller.
0015 
0016   Datasheets:
0017   https://www.ti.com/lit/gpn/tps23861
0018 
0019 
0020 properties:
0021   compatible:
0022     enum:
0023       - ti,tps23861
0024 
0025   reg:
0026     maxItems: 1
0027 
0028   shunt-resistor-micro-ohms:
0029     description: The value of curent sense resistor in microohms.
0030     default: 255000
0031     minimum: 250000
0032     maximum: 255000
0033 
0034 required:
0035   - compatible
0036   - reg
0037 
0038 additionalProperties: false
0039 
0040 examples:
0041   - |
0042     i2c {
0043           #address-cells = <1>;
0044           #size-cells = <0>;
0045 
0046           tps23861@30 {
0047               compatible = "ti,tps23861";
0048               reg = <0x30>;
0049               shunt-resistor-micro-ohms = <255000>;
0050           };
0051     };