adm1275 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. Kernel driver adm1275
  2. =====================
  3. Supported chips:
  4. * Analog Devices ADM1275
  5. Prefix: 'adm1275'
  6. Addresses scanned: -
  7. Datasheet: www.analog.com/static/imported-files/data_sheets/ADM1275.pdf
  8. Author: Guenter Roeck <guenter.roeck@ericsson.com>
  9. Description
  10. -----------
  11. This driver supports hardware montoring for Analog Devices ADM1275 Hot-Swap
  12. Controller and Digital Power Monitor.
  13. The ADM1275 is a hot-swap controller that allows a circuit board to be removed
  14. from or inserted into a live backplane. It also features current and voltage
  15. readback via an integrated 12-bit analog-to-digital converter (ADC), accessed
  16. using a PMBus. interface.
  17. The driver is a client driver to the core PMBus driver. Please see
  18. Documentation/hwmon/pmbus for details on PMBus client drivers.
  19. Usage Notes
  20. -----------
  21. This driver does not auto-detect devices. You will have to instantiate the
  22. devices explicitly. Please see Documentation/i2c/instantiating-devices for
  23. details.
  24. Platform data support
  25. ---------------------
  26. The driver supports standard PMBus driver platform data. Please see
  27. Documentation/hwmon/pmbus for details.
  28. Sysfs entries
  29. -------------
  30. The following attributes are supported. Limits are read-write; all other
  31. attributes are read-only.
  32. in1_label "vin1" or "vout1" depending on chip variant and
  33. configuration.
  34. in1_input Measured voltage. From READ_VOUT register.
  35. in1_min Minumum Voltage. From VOUT_UV_WARN_LIMIT register.
  36. in1_max Maximum voltage. From VOUT_OV_WARN_LIMIT register.
  37. in1_min_alarm Voltage low alarm. From VOLTAGE_UV_WARNING status.
  38. in1_max_alarm Voltage high alarm. From VOLTAGE_OV_WARNING status.
  39. curr1_label "iout1"
  40. curr1_input Measured current. From READ_IOUT register.
  41. curr1_max Maximum current. From IOUT_OC_WARN_LIMIT register.
  42. curr1_max_alarm Current high alarm. From IOUT_OC_WARN_LIMIT register.