max34440 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. Kernel driver max34440
  2. ======================
  3. Supported chips:
  4. * Maxim MAX34440
  5. Prefixes: 'max34440'
  6. Addresses scanned: -
  7. Datasheet: http://datasheets.maxim-ic.com/en/ds/MAX34440.pdf
  8. * Maxim MAX34441
  9. PMBus 5-Channel Power-Supply Manager and Intelligent Fan Controller
  10. Prefixes: 'max34441'
  11. Addresses scanned: -
  12. Datasheet: http://datasheets.maxim-ic.com/en/ds/MAX34441.pdf
  13. Author: Guenter Roeck <guenter.roeck@ericsson.com>
  14. Description
  15. -----------
  16. This driver supports hardware montoring for Maxim MAX34440 PMBus 6-Channel
  17. Power-Supply Manager and MAX34441 PMBus 5-Channel Power-Supply Manager
  18. and Intelligent Fan Controller.
  19. The driver is a client driver to the core PMBus driver. Please see
  20. Documentation/hwmon/pmbus for details on PMBus client drivers.
  21. Usage Notes
  22. -----------
  23. This driver does not auto-detect devices. You will have to instantiate the
  24. devices explicitly. Please see Documentation/i2c/instantiating-devices for
  25. details.
  26. Platform data support
  27. ---------------------
  28. The driver supports standard PMBus driver platform data.
  29. Sysfs entries
  30. -------------
  31. The following attributes are supported. Limits are read-write; all other
  32. attributes are read-only.
  33. in[1-6]_label "vout[1-6]".
  34. in[1-6]_input Measured voltage. From READ_VOUT register.
  35. in[1-6]_min Minumum Voltage. From VOUT_UV_WARN_LIMIT register.
  36. in[1-6]_max Maximum voltage. From VOUT_OV_WARN_LIMIT register.
  37. in[1-6]_lcrit Critical minumum Voltage. VOUT_UV_FAULT_LIMIT register.
  38. in[1-6]_crit Critical maximum voltage. From VOUT_OV_FAULT_LIMIT register.
  39. in[1-6]_min_alarm Voltage low alarm. From VOLTAGE_UV_WARNING status.
  40. in[1-6]_max_alarm Voltage high alarm. From VOLTAGE_OV_WARNING status.
  41. in[1-6]_lcrit_alarm Voltage critical low alarm. From VOLTAGE_UV_FAULT status.
  42. in[1-6]_crit_alarm Voltage critical high alarm. From VOLTAGE_OV_FAULT status.
  43. in[1-6]_highest Historical maximum voltage.
  44. in[1-6]_reset_history Write any value to reset history.
  45. curr[1-6]_label "iout[1-6]".
  46. curr[1-6]_input Measured current. From READ_IOUT register.
  47. curr[1-6]_max Maximum current. From IOUT_OC_WARN_LIMIT register.
  48. curr[1-6]_crit Critical maximum current. From IOUT_OC_FAULT_LIMIT register.
  49. curr[1-6]_max_alarm Current high alarm. From IOUT_OC_WARNING status.
  50. curr[1-6]_crit_alarm Current critical high alarm. From IOUT_OC_FAULT status.
  51. curr[1-6]_highest Historical maximum current.
  52. curr[1-6]_reset_history Write any value to reset history.
  53. in6 and curr6 attributes only exist for MAX34440.
  54. temp[1-8]_input Measured temperatures. From READ_TEMPERATURE_1 register.
  55. temp1 is the chip's internal temperature. temp2..temp5
  56. are remote I2C temperature sensors. For MAX34441, temp6
  57. is a remote thermal-diode sensor. For MAX34440, temp6..8
  58. are remote I2C temperature sensors.
  59. temp[1-8]_max Maximum temperature. From OT_WARN_LIMIT register.
  60. temp[1-8]_crit Critical high temperature. From OT_FAULT_LIMIT register.
  61. temp[1-8]_max_alarm Temperature high alarm.
  62. temp[1-8]_crit_alarm Temperature critical high alarm.
  63. temp[1-8]_highest Historical maximum temperature.
  64. temp[1-8]_reset_history Write any value to reset history.
  65. temp7 and temp8 attributes only exist for MAX34440.