ti-ads8688.txt 497 B

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