max1118.txt 529 B

123456789101112131415161718192021
  1. * MAX1117/MAX1118/MAX1119 8-bit, dual-channel ADCs
  2. Required properties:
  3. - compatible: Should be one of
  4. * "maxim,max1117"
  5. * "maxim,max1118"
  6. * "maxim,max1119"
  7. - reg: spi chip select number for the device
  8. - (max1118 only) vref-supply: The regulator supply for ADC reference voltage
  9. Recommended properties:
  10. - spi-max-frequency: Definition as per
  11. Documentation/devicetree/bindings/spi/spi-bus.txt
  12. Example:
  13. adc@0 {
  14. compatible = "maxim,max1118";
  15. reg = <0>;
  16. vref-supply = <&vdd_supply>;
  17. spi-max-frequency = <1000000>;
  18. };