max9611.txt 851 B

123456789101112131415161718192021222324252627
  1. * Maxim max9611/max9612 current sense amplifier with 12-bits ADC interface
  2. Maxim max9611/max9612 is an high-side current sense amplifier with integrated
  3. 12-bits ADC communicating over I2c bus.
  4. The device node for this driver shall be a child of a I2c controller.
  5. Required properties
  6. - compatible: Should be "maxim,max9611" or "maxim,max9612"
  7. - reg: The 7-bits long I2c address of the device
  8. - shunt-resistor-micro-ohms: Value, in micro Ohms, of the current sense shunt
  9. resistor
  10. Example:
  11. &i2c4 {
  12. csa: adc@7c {
  13. compatible = "maxim,max9611";
  14. reg = <0x7c>;
  15. shunt-resistor-micro-ohms = <5000>;
  16. };
  17. };
  18. This device node describes a current sense amplifier sitting on I2c4 bus
  19. with address 0x7c (read address is 0xf9, write address is 0xf8).
  20. A sense resistor of 0,005 Ohm is installed between RS+ and RS- current-sensing
  21. inputs.