xref: /freebsd/sys/contrib/device-tree/Bindings/iio/adc/ti-ads8688.txt (revision 5ca8e32633c4ffbbcd6762e5888b6a4ba0708c6c)
1* Texas Instruments' ADS8684 and ADS8688 ADC chip
2
3Required properties:
4 - compatible: Should be "ti,ads8684" or "ti,ads8688"
5 - reg: spi chip select number for the device
6
7Recommended properties:
8 - spi-max-frequency: Definition as per
9		Documentation/devicetree/bindings/spi/spi-bus.txt
10
11Optional properties:
12 - vref-supply: The regulator supply for ADC reference voltage
13
14Example:
15adc@0 {
16	compatible = "ti,ads8688";
17	reg = <0>;
18	vref-supply = <&vdd_supply>;
19	spi-max-frequency = <1000000>;
20};
21