53 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)2%YAML 1.23---4$id: http://devicetree.org/schemas/iio/adc/ti,ads8344.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Texas Instruments ADS8344 ADC8 9maintainers:10 - Gregory Clement <gregory.clement@bootlin.com>11 12description: |13 16bit 8-channel ADC with single ended inputs.14 15properties:16 compatible:17 const: ti,ads834418 19 reg:20 maxItems: 121 22 vref-supply:23 description: Supply the 2.5V or 5V reference voltage24 25 "#io-channel-cells":26 const: 127 28required:29 - compatible30 - reg31 - vref-supply32 33allOf:34 - $ref: /schemas/spi/spi-peripheral-props.yaml#35 36unevaluatedProperties: false37 38examples:39 - |40 spi {41 #address-cells = <1>;42 #size-cells = <0>;43 44 adc@0 {45 compatible = "ti,ads8344";46 reg = <0>;47 vref-supply = <&refin_supply>;48 spi-max-frequency = <10000000>;49 #io-channel-cells = <1>;50 };51 };52...53