Path: blob/master/Documentation/devicetree/bindings/hwmon/adi,ltc2992.yaml
26308 views
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)1%YAML 1.22---3$id: http://devicetree.org/schemas/hwmon/adi,ltc2992.yaml#4$schema: http://devicetree.org/meta-schemas/core.yaml#56title: Linear Technology 2992 Power Monitor78maintainers:9- Cedric Encarnacion <cedricjustine.encarnacion@analog.com>1011description: |12Linear Technology 2992 Dual Wide Range Power Monitor13https://www.analog.com/media/en/technical-documentation/data-sheets/ltc2992.pdf1415properties:16compatible:17enum:18- adi,ltc29921920reg:21maxItems: 12223'#address-cells':24const: 12526'#size-cells':27const: 02829avcc-supply: true3031patternProperties:32"^channel@([0-1])$":33type: object34additionalProperties: false35description: |36Represents the two supplies to be monitored.3738properties:39reg:40description: |41The channel number. LTC2992 can monitor two supplies.42items:43minimum: 044maximum: 14546shunt-resistor-micro-ohms:47description:48The value of current sense resistor in microohms.4950required:51- compatible52- reg5354additionalProperties: false5556examples:57- |58i2c {59#address-cells = <1>;60#size-cells = <0>;6162ltc2992@6f {63#address-cells = <1>;64#size-cells = <0>;6566compatible = "adi,ltc2992";67reg = <0x6f>;6869channel@0 {70reg = <0x0>;71shunt-resistor-micro-ohms = <10000>;72};7374channel@1 {75reg = <0x1>;76shunt-resistor-micro-ohms = <10000>;77};78};79};80...818283