max34440 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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. curr[1-6]_label "iout[1-6]".
  44. curr[1-6]_input Measured current. From READ_IOUT register.
  45. curr[1-6]_max Maximum current. From IOUT_OC_WARN_LIMIT register.
  46. curr[1-6]_crit Critical maximum current. From IOUT_OC_FAULT_LIMIT register.
  47. curr[1-6]_max_alarm Current high alarm. From IOUT_OC_WARNING status.
  48. curr[1-6]_crit_alarm Current critical high alarm. From IOUT_OC_FAULT status.
  49. in6 and curr6 attributes only exist for MAX34440.
  50. temp[1-8]_input Measured temperatures. From READ_TEMPERATURE_1 register.
  51. temp1 is the chip's internal temperature. temp2..temp5
  52. are remote I2C temperature sensors. For MAX34441, temp6
  53. is a remote thermal-diode sensor. For MAX34440, temp6..8
  54. are remote I2C temperature sensors.
  55. temp[1-8]_max Maximum temperature. From OT_WARN_LIMIT register.
  56. temp[1-8]_crit Critical high temperature. From OT_FAULT_LIMIT register.
  57. temp[1-8]_max_alarm Temperature high alarm.
  58. temp[1-8]_crit_alarm Temperature critical high alarm.
  59. temp7 and temp8 attributes only exist for MAX34440.