50 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,adc108s102.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Texas Instruments ADC108S102 and ADC128S1028 9maintainers:10 - Jonathan Cameron <jic23@kernel.org>11 12description: |13 Family of 8 channel, 10/12 bit, SPI, single ended ADCs.14 15properties:16 compatible:17 const:18 ti,adc108s10219 20 reg: true21 vref-supply: true22 "#io-channel-cells":23 const: 124 25required:26 - compatible27 - reg28 - vref-supply29 30allOf:31 - $ref: /schemas/spi/spi-peripheral-props.yaml#32 33unevaluatedProperties: false34 35examples:36 - |37 spi {38 #address-cells = <1>;39 #size-cells = <0>;40 41 adc@0 {42 compatible = "ti,adc108s102";43 reg = <0>;44 vref-supply = <&vdd_supply>;45 spi-max-frequency = <1000000>;46 #io-channel-cells = <1>;47 };48 };49...50