ltc2990 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. Kernel driver ltc2990
  2. =====================
  3. Supported chips:
  4. * Linear Technology LTC2990
  5. Prefix: 'ltc2990'
  6. Addresses scanned: -
  7. Datasheet: http://www.linear.com/product/ltc2990
  8. Author: Mike Looijmans <mike.looijmans@topic.nl>
  9. Tom Levens <tom.levens@cern.ch>
  10. Description
  11. -----------
  12. LTC2990 is a Quad I2C Voltage, Current and Temperature Monitor.
  13. The chip's inputs can measure 4 voltages, or two inputs together (1+2 and 3+4)
  14. can be combined to measure a differential voltage, which is typically used to
  15. measure current through a series resistor, or a temperature with an external
  16. diode.
  17. Usage Notes
  18. -----------
  19. This driver does not probe for PMBus devices. You will have to instantiate
  20. devices explicitly.
  21. Sysfs attributes
  22. ----------------
  23. in0_input Voltage at Vcc pin in millivolt (range 2.5V to 5V)
  24. temp1_input Internal chip temperature in millidegrees Celcius
  25. A subset of the following attributes are visible, depending on the measurement
  26. mode of the chip.
  27. in[1-4]_input Voltage at V[1-4] pin in millivolt
  28. temp2_input External temperature sensor TR1 in millidegrees Celcius
  29. temp3_input External temperature sensor TR2 in millidegrees Celcius
  30. curr1_input Current in mA across V1-V2 assuming a 1mOhm sense resistor
  31. curr2_input Current in mA across V3-V4 assuming a 1mOhm sense resistor
  32. The "curr*_input" measurements actually report the voltage drop across the
  33. input pins in microvolts. This is equivalent to the current through a 1mOhm
  34. sense resistor. Divide the reported value by the actual sense resistor value
  35. in mOhm to get the actual value.