ltc2978 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. Kernel driver ltc2978
  2. =====================
  3. Supported chips:
  4. * Linear Technology LTC2974
  5. Prefix: 'ltc2974'
  6. Addresses scanned: -
  7. Datasheet: http://www.linear.com/product/ltc2974
  8. * Linear Technology LTC2978
  9. Prefix: 'ltc2978'
  10. Addresses scanned: -
  11. Datasheet: http://www.linear.com/product/ltc2978
  12. * Linear Technology LTC3880
  13. Prefix: 'ltc3880'
  14. Addresses scanned: -
  15. Datasheet: http://www.linear.com/product/ltc3880
  16. * Linear Technology LTC3883
  17. Prefix: 'ltc3883'
  18. Addresses scanned: -
  19. Datasheet: http://www.linear.com/product/ltc3883
  20. Author: Guenter Roeck <linux@roeck-us.net>
  21. Description
  22. -----------
  23. LTC2974 is a quad digital power supply manager. LTC2978 is an octal power supply
  24. monitor. LTC3880 is a dual output poly-phase step-down DC/DC controller. LTC3883
  25. is a single phase step-down DC/DC controller.
  26. Usage Notes
  27. -----------
  28. This driver does not probe for PMBus devices. You will have to instantiate
  29. devices explicitly.
  30. Example: the following commands will load the driver for an LTC2978 at address
  31. 0x60 on I2C bus #1:
  32. # modprobe ltc2978
  33. # echo ltc2978 0x60 > /sys/bus/i2c/devices/i2c-1/new_device
  34. Sysfs attributes
  35. ----------------
  36. in1_label "vin"
  37. in1_input Measured input voltage.
  38. in1_min Minimum input voltage.
  39. in1_max Maximum input voltage. LTC2974 and LTC2978 only.
  40. in1_lcrit Critical minimum input voltage. LTC2974 and LTC2978
  41. only.
  42. in1_crit Critical maximum input voltage.
  43. in1_min_alarm Input voltage low alarm.
  44. in1_max_alarm Input voltage high alarm. LTC2974 and LTC2978 only.
  45. in1_lcrit_alarm Input voltage critical low alarm. LTC2974 and LTC2978
  46. only.
  47. in1_crit_alarm Input voltage critical high alarm.
  48. in1_lowest Lowest input voltage. LTC2974 and LTC2978 only.
  49. in1_highest Highest input voltage.
  50. in1_reset_history Reset input voltage history.
  51. in[N]_label "vout[1-8]".
  52. LTC2974: N=2-5
  53. LTC2978: N=2-9
  54. LTC3880: N=2-3
  55. LTC3883: N=2
  56. in[N]_input Measured output voltage.
  57. in[N]_min Minimum output voltage.
  58. in[N]_max Maximum output voltage.
  59. in[N]_lcrit Critical minimum output voltage.
  60. in[N]_crit Critical maximum output voltage.
  61. in[N]_min_alarm Output voltage low alarm.
  62. in[N]_max_alarm Output voltage high alarm.
  63. in[N]_lcrit_alarm Output voltage critical low alarm.
  64. in[N]_crit_alarm Output voltage critical high alarm.
  65. in[N]_lowest Lowest output voltage. LTC2974 and LTC2978 only.
  66. in[N]_highest Highest output voltage.
  67. in[N]_reset_history Reset output voltage history.
  68. temp[N]_input Measured temperature.
  69. On LTC2974, temp[1-4] report external temperatures,
  70. and temp5 reports the chip temperature.
  71. On LTC2978, only one temperature measurement is
  72. supported and reports the chip temperature.
  73. On LTC3880, temp1 and temp2 report external
  74. temperatures, and temp3 reports the chip temperature.
  75. On LTC3883, temp1 reports an external temperature,
  76. and temp2 reports the chip temperature.
  77. temp[N]_min Mimimum temperature. LTC2974 and LTC2978 only.
  78. temp[N]_max Maximum temperature.
  79. temp[N]_lcrit Critical low temperature.
  80. temp[N]_crit Critical high temperature.
  81. temp[N]_min_alarm Temperature low alarm. LTC2974 and LTC2978 only.
  82. temp[N]_max_alarm Temperature high alarm.
  83. temp[N]_lcrit_alarm Temperature critical low alarm.
  84. temp[N]_crit_alarm Temperature critical high alarm.
  85. temp[N]_lowest Lowest measured temperature. LTC2974 and LTC2978 only.
  86. Not supported for chip temperature sensor on LTC2974.
  87. temp[N]_highest Highest measured temperature. Not supported for chip
  88. temperature sensor on LTC2974.
  89. temp[N]_reset_history Reset temperature history. Not supported for chip
  90. temperature sensor on LTC2974.
  91. power1_label "pin". LTC3883 only.
  92. power1_input Measured input power.
  93. power[N]_label "pout[1-4]".
  94. LTC2974: N=1-4
  95. LTC2978: Not supported
  96. LTC3880: N=1-2
  97. LTC3883: N=2
  98. power[N]_input Measured output power.
  99. curr1_label "iin". LTC3880 and LTC3883 only.
  100. curr1_input Measured input current.
  101. curr1_max Maximum input current.
  102. curr1_max_alarm Input current high alarm.
  103. curr1_highest Highest input current. LTC3883 only.
  104. curr1_reset_history Reset input current history. LTC3883 only.
  105. curr[N]_label "iout[1-4]".
  106. LTC2974: N=1-4
  107. LTC2978: not supported
  108. LTC3880: N=2-3
  109. LTC3883: N=2
  110. curr[N]_input Measured output current.
  111. curr[N]_max Maximum output current.
  112. curr[N]_crit Critical high output current.
  113. curr[N]_lcrit Critical low output current. LTC2974 only.
  114. curr[N]_max_alarm Output current high alarm.
  115. curr[N]_crit_alarm Output current critical high alarm.
  116. curr[N]_lcrit_alarm Output current critical low alarm. LTC2974 only.
  117. curr[N]_lowest Lowest output current. LTC2974 only.
  118. curr[N]_highest Highest output current.
  119. curr[N]_reset_history Reset output current history.