brintos

brintos / linux-shallow public Read only

0
0
Text · 791 B · be5c7d4 Raw
38 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)2%YAML 1.23---4$id: http://devicetree.org/schemas/hwmon/iio-hwmon.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: ADC-attached Hardware Sensor8 9maintainers:10  - Jonathan Cameron <jic23@kernel.org>11 12description: >13  Bindings for hardware monitoring devices connected to ADC controllers14  supporting the Industrial I/O bindings.15 16properties:17  compatible:18    const: iio-hwmon19 20  io-channels:21    minItems: 122    maxItems: 51 # Should be enough23    description: >24      List of phandles to ADC channels to read the monitoring values25 26required:27  - compatible28  - io-channels29 30additionalProperties: false31 32examples:33  - |34    iio-hwmon {35        compatible = "iio-hwmon";36        io-channels = <&adc 1>, <&adc 2>;37    };38