pmbus 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  1. Kernel driver pmbus
  2. ====================
  3. Supported chips:
  4. * Ericsson BMR453, BMR454
  5. Prefixes: 'bmr453', 'bmr454'
  6. Addresses scanned: -
  7. Datasheet:
  8. http://archive.ericsson.net/service/internet/picov/get?DocNo=28701-EN/LZT146395
  9. * ON Semiconductor ADP4000, NCP4200, NCP4208
  10. Prefixes: 'adp4000', 'ncp4200', 'ncp4208'
  11. Addresses scanned: -
  12. Datasheets:
  13. http://www.onsemi.com/pub_link/Collateral/ADP4000-D.PDF
  14. http://www.onsemi.com/pub_link/Collateral/NCP4200-D.PDF
  15. http://www.onsemi.com/pub_link/Collateral/JUNE%202009-%20REV.%200.PDF
  16. * Lineage Power
  17. Prefixes: 'mdt040', 'pdt003', 'pdt006', 'pdt012', 'udt020'
  18. Addresses scanned: -
  19. Datasheets:
  20. http://www.lineagepower.com/oem/pdf/PDT003A0X.pdf
  21. http://www.lineagepower.com/oem/pdf/PDT006A0X.pdf
  22. http://www.lineagepower.com/oem/pdf/PDT012A0X.pdf
  23. http://www.lineagepower.com/oem/pdf/UDT020A0X.pdf
  24. http://www.lineagepower.com/oem/pdf/MDT040A0X.pdf
  25. * Texas Instruments TPS40400, TPS544B20, TPS544B25, TPS544C20, TPS544C25
  26. Prefixes: 'tps40400', 'tps544b20', 'tps544b25', 'tps544c20', 'tps544c25'
  27. Addresses scanned: -
  28. Datasheets:
  29. http://www.ti.com/lit/gpn/tps40400
  30. http://www.ti.com/lit/gpn/tps544b20
  31. http://www.ti.com/lit/gpn/tps544b25
  32. http://www.ti.com/lit/gpn/tps544c20
  33. http://www.ti.com/lit/gpn/tps544c25
  34. * Generic PMBus devices
  35. Prefix: 'pmbus'
  36. Addresses scanned: -
  37. Datasheet: n.a.
  38. Author: Guenter Roeck <linux@roeck-us.net>
  39. Description
  40. -----------
  41. This driver supports hardware montoring for various PMBus compliant devices.
  42. It supports voltage, current, power, and temperature sensors as supported
  43. by the device.
  44. Each monitored channel has its own high and low limits, plus a critical
  45. limit.
  46. Fan support will be added in a later version of this driver.
  47. Usage Notes
  48. -----------
  49. This driver does not probe for PMBus devices, since there is no register
  50. which can be safely used to identify the chip (The MFG_ID register is not
  51. supported by all chips), and since there is no well defined address range for
  52. PMBus devices. You will have to instantiate the devices explicitly.
  53. Example: the following will load the driver for an LTC2978 at address 0x60
  54. on I2C bus #1:
  55. $ modprobe pmbus
  56. $ echo ltc2978 0x60 > /sys/bus/i2c/devices/i2c-1/new_device
  57. Platform data support
  58. ---------------------
  59. Support for additional PMBus chips can be added by defining chip parameters in
  60. a new chip specific driver file. For example, (untested) code to add support for
  61. Emerson DS1200 power modules might look as follows.
  62. static struct pmbus_driver_info ds1200_info = {
  63. .pages = 1,
  64. /* Note: All other sensors are in linear mode */
  65. .direct[PSC_VOLTAGE_OUT] = true,
  66. .direct[PSC_TEMPERATURE] = true,
  67. .direct[PSC_CURRENT_OUT] = true,
  68. .m[PSC_VOLTAGE_IN] = 1,
  69. .b[PSC_VOLTAGE_IN] = 0,
  70. .R[PSC_VOLTAGE_IN] = 3,
  71. .m[PSC_VOLTAGE_OUT] = 1,
  72. .b[PSC_VOLTAGE_OUT] = 0,
  73. .R[PSC_VOLTAGE_OUT] = 3,
  74. .m[PSC_TEMPERATURE] = 1,
  75. .b[PSC_TEMPERATURE] = 0,
  76. .R[PSC_TEMPERATURE] = 3,
  77. .func[0] = PMBUS_HAVE_VIN | PMBUS_HAVE_IIN | PMBUS_HAVE_STATUS_INPUT
  78. | PMBUS_HAVE_VOUT | PMBUS_HAVE_STATUS_VOUT
  79. | PMBUS_HAVE_IOUT | PMBUS_HAVE_STATUS_IOUT
  80. | PMBUS_HAVE_PIN | PMBUS_HAVE_POUT
  81. | PMBUS_HAVE_TEMP | PMBUS_HAVE_STATUS_TEMP
  82. | PMBUS_HAVE_FAN12 | PMBUS_HAVE_STATUS_FAN12,
  83. };
  84. static int ds1200_probe(struct i2c_client *client,
  85. const struct i2c_device_id *id)
  86. {
  87. return pmbus_do_probe(client, id, &ds1200_info);
  88. }
  89. static int ds1200_remove(struct i2c_client *client)
  90. {
  91. return pmbus_do_remove(client);
  92. }
  93. static const struct i2c_device_id ds1200_id[] = {
  94. {"ds1200", 0},
  95. {}
  96. };
  97. MODULE_DEVICE_TABLE(i2c, ds1200_id);
  98. /* This is the driver that will be inserted */
  99. static struct i2c_driver ds1200_driver = {
  100. .driver = {
  101. .name = "ds1200",
  102. },
  103. .probe = ds1200_probe,
  104. .remove = ds1200_remove,
  105. .id_table = ds1200_id,
  106. };
  107. static int __init ds1200_init(void)
  108. {
  109. return i2c_add_driver(&ds1200_driver);
  110. }
  111. static void __exit ds1200_exit(void)
  112. {
  113. i2c_del_driver(&ds1200_driver);
  114. }
  115. Sysfs entries
  116. -------------
  117. When probing the chip, the driver identifies which PMBus registers are
  118. supported, and determines available sensors from this information.
  119. Attribute files only exist if respective sensors are supported by the chip.
  120. Labels are provided to inform the user about the sensor associated with
  121. a given sysfs entry.
  122. The following attributes are supported. Limits are read-write; all other
  123. attributes are read-only.
  124. inX_input Measured voltage. From READ_VIN or READ_VOUT register.
  125. inX_min Minimum Voltage.
  126. From VIN_UV_WARN_LIMIT or VOUT_UV_WARN_LIMIT register.
  127. inX_max Maximum voltage.
  128. From VIN_OV_WARN_LIMIT or VOUT_OV_WARN_LIMIT register.
  129. inX_lcrit Critical minimum Voltage.
  130. From VIN_UV_FAULT_LIMIT or VOUT_UV_FAULT_LIMIT register.
  131. inX_crit Critical maximum voltage.
  132. From VIN_OV_FAULT_LIMIT or VOUT_OV_FAULT_LIMIT register.
  133. inX_min_alarm Voltage low alarm. From VOLTAGE_UV_WARNING status.
  134. inX_max_alarm Voltage high alarm. From VOLTAGE_OV_WARNING status.
  135. inX_lcrit_alarm Voltage critical low alarm.
  136. From VOLTAGE_UV_FAULT status.
  137. inX_crit_alarm Voltage critical high alarm.
  138. From VOLTAGE_OV_FAULT status.
  139. inX_label "vin", "vcap", or "voutY"
  140. currX_input Measured current. From READ_IIN or READ_IOUT register.
  141. currX_max Maximum current.
  142. From IIN_OC_WARN_LIMIT or IOUT_OC_WARN_LIMIT register.
  143. currX_lcrit Critical minimum output current.
  144. From IOUT_UC_FAULT_LIMIT register.
  145. currX_crit Critical maximum current.
  146. From IIN_OC_FAULT_LIMIT or IOUT_OC_FAULT_LIMIT register.
  147. currX_alarm Current high alarm.
  148. From IIN_OC_WARNING or IOUT_OC_WARNING status.
  149. currX_max_alarm Current high alarm.
  150. From IIN_OC_WARN_LIMIT or IOUT_OC_WARN_LIMIT status.
  151. currX_lcrit_alarm Output current critical low alarm.
  152. From IOUT_UC_FAULT status.
  153. currX_crit_alarm Current critical high alarm.
  154. From IIN_OC_FAULT or IOUT_OC_FAULT status.
  155. currX_label "iin" or "ioutY"
  156. powerX_input Measured power. From READ_PIN or READ_POUT register.
  157. powerX_cap Output power cap. From POUT_MAX register.
  158. powerX_max Power limit. From PIN_OP_WARN_LIMIT or
  159. POUT_OP_WARN_LIMIT register.
  160. powerX_crit Critical output power limit.
  161. From POUT_OP_FAULT_LIMIT register.
  162. powerX_alarm Power high alarm.
  163. From PIN_OP_WARNING or POUT_OP_WARNING status.
  164. powerX_crit_alarm Output power critical high alarm.
  165. From POUT_OP_FAULT status.
  166. powerX_label "pin" or "poutY"
  167. tempX_input Measured temperature.
  168. From READ_TEMPERATURE_X register.
  169. tempX_min Mimimum temperature. From UT_WARN_LIMIT register.
  170. tempX_max Maximum temperature. From OT_WARN_LIMIT register.
  171. tempX_lcrit Critical low temperature.
  172. From UT_FAULT_LIMIT register.
  173. tempX_crit Critical high temperature.
  174. From OT_FAULT_LIMIT register.
  175. tempX_min_alarm Chip temperature low alarm. Set by comparing
  176. READ_TEMPERATURE_X with UT_WARN_LIMIT if
  177. TEMP_UT_WARNING status is set.
  178. tempX_max_alarm Chip temperature high alarm. Set by comparing
  179. READ_TEMPERATURE_X with OT_WARN_LIMIT if
  180. TEMP_OT_WARNING status is set.
  181. tempX_lcrit_alarm Chip temperature critical low alarm. Set by comparing
  182. READ_TEMPERATURE_X with UT_FAULT_LIMIT if
  183. TEMP_UT_FAULT status is set.
  184. tempX_crit_alarm Chip temperature critical high alarm. Set by comparing
  185. READ_TEMPERATURE_X with OT_FAULT_LIMIT if
  186. TEMP_OT_FAULT status is set.