ad5272.txt 703 B

123456789101112131415161718192021222324252627
  1. * Analog Devices AD5272 digital potentiometer
  2. The node for this device must be a child node of a I2C controller, hence
  3. all mandatory properties for your controller must be specified. See directory:
  4. Documentation/devicetree/bindings/i2c
  5. for more details.
  6. Required properties:
  7. - compatible: Must be one of the following, depending on the model:
  8. adi,ad5272-020
  9. adi,ad5272-050
  10. adi,ad5272-100
  11. adi,ad5274-020
  12. adi,ad5274-100
  13. Optional properties:
  14. - reset-gpios: GPIO specification for the RESET input. This is an
  15. active low signal to the AD5272.
  16. Example:
  17. ad5272: potentiometer@2f {
  18. reg = <0x2F>;
  19. compatible = "adi,ad5272-020";
  20. reset-gpios = <&gpio3 6 GPIO_ACTIVE_HIGH>;
  21. };