ti-ads7950.txt 745 B

1234567891011121314151617181920212223
  1. * Texas Instruments ADS7950 family of A/DC chips
  2. Required properties:
  3. - compatible: Must be one of "ti,ads7950", "ti,ads7951", "ti,ads7952",
  4. "ti,ads7953", "ti,ads7954", "ti,ads7955", "ti,ads7956", "ti,ads7957",
  5. "ti,ads7958", "ti,ads7959", "ti,ads7960", or "ti,ads7961"
  6. - reg: SPI chip select number for the device
  7. - #io-channel-cells: Must be 1 as per ../iio-bindings.txt
  8. - vref-supply: phandle to a regulator node that supplies the 2.5V or 5V
  9. reference voltage
  10. Recommended properties:
  11. - spi-max-frequency: Definition as per
  12. Documentation/devicetree/bindings/spi/spi-bus.txt
  13. Example:
  14. adc@0 {
  15. compatible = "ti,ads7957";
  16. reg = <0>;
  17. #io-channel-cells = <1>;
  18. vref-supply = <&refin_supply>;
  19. spi-max-frequency = <10000000>;
  20. };