adc128d818.txt 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. TI ADC128D818 ADC System Monitor With Temperature Sensor
  2. --------------------------------------------------------
  3. Operation modes:
  4. - Mode 0: 7 single-ended voltage readings (IN0-IN6),
  5. 1 temperature reading (internal)
  6. - Mode 1: 8 single-ended voltage readings (IN0-IN7),
  7. no temperature
  8. - Mode 2: 4 pseudo-differential voltage readings
  9. (IN0-IN1, IN3-IN2, IN4-IN5, IN7-IN6),
  10. 1 temperature reading (internal)
  11. - Mode 3: 4 single-ended voltage readings (IN0-IN3),
  12. 2 pseudo-differential voltage readings
  13. (IN4-IN5, IN7-IN6),
  14. 1 temperature reading (internal)
  15. If no operation mode is configured via device tree, the driver keeps the
  16. currently active chip operation mode (default is mode 0).
  17. Required node properties:
  18. - compatible: must be set to "ti,adc128d818"
  19. - reg: I2C address of the device
  20. Optional node properties:
  21. - ti,mode: Operation mode (see above).
  22. Example (operation mode 2):
  23. adc128d818@1d {
  24. compatible = "ti,adc128d818";
  25. reg = <0x1d>;
  26. ti,mode = <2>;
  27. };