pmbus.c 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  1. /*
  2. * Hardware monitoring driver for PMBus devices
  3. *
  4. * Copyright (c) 2010, 2011 Ericsson AB.
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  19. */
  20. #include <linux/kernel.h>
  21. #include <linux/module.h>
  22. #include <linux/init.h>
  23. #include <linux/err.h>
  24. #include <linux/slab.h>
  25. #include <linux/mutex.h>
  26. #include <linux/i2c.h>
  27. #include "pmbus.h"
  28. /*
  29. * Find sensor groups and status registers on each page.
  30. */
  31. static void pmbus_find_sensor_groups(struct i2c_client *client,
  32. struct pmbus_driver_info *info)
  33. {
  34. int page;
  35. /* Sensors detected on page 0 only */
  36. if (pmbus_check_word_register(client, 0, PMBUS_READ_VIN))
  37. info->func[0] |= PMBUS_HAVE_VIN;
  38. if (pmbus_check_word_register(client, 0, PMBUS_READ_VCAP))
  39. info->func[0] |= PMBUS_HAVE_VCAP;
  40. if (pmbus_check_word_register(client, 0, PMBUS_READ_IIN))
  41. info->func[0] |= PMBUS_HAVE_IIN;
  42. if (pmbus_check_word_register(client, 0, PMBUS_READ_PIN))
  43. info->func[0] |= PMBUS_HAVE_PIN;
  44. if (info->func[0]
  45. && pmbus_check_byte_register(client, 0, PMBUS_STATUS_INPUT))
  46. info->func[0] |= PMBUS_HAVE_STATUS_INPUT;
  47. if (pmbus_check_byte_register(client, 0, PMBUS_FAN_CONFIG_12) &&
  48. pmbus_check_word_register(client, 0, PMBUS_READ_FAN_SPEED_1)) {
  49. info->func[0] |= PMBUS_HAVE_FAN12;
  50. if (pmbus_check_byte_register(client, 0, PMBUS_STATUS_FAN_12))
  51. info->func[0] |= PMBUS_HAVE_STATUS_FAN12;
  52. }
  53. if (pmbus_check_byte_register(client, 0, PMBUS_FAN_CONFIG_34) &&
  54. pmbus_check_word_register(client, 0, PMBUS_READ_FAN_SPEED_3)) {
  55. info->func[0] |= PMBUS_HAVE_FAN34;
  56. if (pmbus_check_byte_register(client, 0, PMBUS_STATUS_FAN_34))
  57. info->func[0] |= PMBUS_HAVE_STATUS_FAN34;
  58. }
  59. if (pmbus_check_word_register(client, 0, PMBUS_READ_TEMPERATURE_1))
  60. info->func[0] |= PMBUS_HAVE_TEMP;
  61. if (pmbus_check_word_register(client, 0, PMBUS_READ_TEMPERATURE_2))
  62. info->func[0] |= PMBUS_HAVE_TEMP2;
  63. if (pmbus_check_word_register(client, 0, PMBUS_READ_TEMPERATURE_3))
  64. info->func[0] |= PMBUS_HAVE_TEMP3;
  65. if (info->func[0] & (PMBUS_HAVE_TEMP | PMBUS_HAVE_TEMP2
  66. | PMBUS_HAVE_TEMP3)
  67. && pmbus_check_byte_register(client, 0,
  68. PMBUS_STATUS_TEMPERATURE))
  69. info->func[0] |= PMBUS_HAVE_STATUS_TEMP;
  70. /* Sensors detected on all pages */
  71. for (page = 0; page < info->pages; page++) {
  72. if (pmbus_check_word_register(client, page, PMBUS_READ_VOUT)) {
  73. info->func[page] |= PMBUS_HAVE_VOUT;
  74. if (pmbus_check_byte_register(client, page,
  75. PMBUS_STATUS_VOUT))
  76. info->func[page] |= PMBUS_HAVE_STATUS_VOUT;
  77. }
  78. if (pmbus_check_word_register(client, page, PMBUS_READ_IOUT)) {
  79. info->func[page] |= PMBUS_HAVE_IOUT;
  80. if (pmbus_check_byte_register(client, 0,
  81. PMBUS_STATUS_IOUT))
  82. info->func[page] |= PMBUS_HAVE_STATUS_IOUT;
  83. }
  84. if (pmbus_check_word_register(client, page, PMBUS_READ_POUT))
  85. info->func[page] |= PMBUS_HAVE_POUT;
  86. }
  87. }
  88. /*
  89. * Identify chip parameters.
  90. */
  91. static int pmbus_identify(struct i2c_client *client,
  92. struct pmbus_driver_info *info)
  93. {
  94. int ret = 0;
  95. if (!info->pages) {
  96. /*
  97. * Check if the PAGE command is supported. If it is,
  98. * keep setting the page number until it fails or until the
  99. * maximum number of pages has been reached. Assume that
  100. * this is the number of pages supported by the chip.
  101. */
  102. if (pmbus_check_byte_register(client, 0, PMBUS_PAGE)) {
  103. int page;
  104. for (page = 1; page < PMBUS_PAGES; page++) {
  105. if (pmbus_set_page(client, page) < 0)
  106. break;
  107. }
  108. pmbus_set_page(client, 0);
  109. info->pages = page;
  110. } else {
  111. info->pages = 1;
  112. }
  113. pmbus_clear_faults(client);
  114. }
  115. if (pmbus_check_byte_register(client, 0, PMBUS_VOUT_MODE)) {
  116. int vout_mode;
  117. vout_mode = pmbus_read_byte_data(client, 0, PMBUS_VOUT_MODE);
  118. if (vout_mode >= 0 && vout_mode != 0xff) {
  119. switch (vout_mode >> 5) {
  120. case 0:
  121. break;
  122. case 1:
  123. info->format[PSC_VOLTAGE_OUT] = vid;
  124. info->vrm_version = vr11;
  125. break;
  126. case 2:
  127. info->format[PSC_VOLTAGE_OUT] = direct;
  128. break;
  129. default:
  130. ret = -ENODEV;
  131. goto abort;
  132. }
  133. }
  134. }
  135. /*
  136. * We should check if the COEFFICIENTS register is supported.
  137. * If it is, and the chip is configured for direct mode, we can read
  138. * the coefficients from the chip, one set per group of sensor
  139. * registers.
  140. *
  141. * To do this, we will need access to a chip which actually supports the
  142. * COEFFICIENTS command, since the command is too complex to implement
  143. * without testing it. Until then, abort if a chip configured for direct
  144. * mode was detected.
  145. */
  146. if (info->format[PSC_VOLTAGE_OUT] == direct) {
  147. ret = -ENODEV;
  148. goto abort;
  149. }
  150. /* Try to find sensor groups */
  151. pmbus_find_sensor_groups(client, info);
  152. abort:
  153. return ret;
  154. }
  155. static int pmbus_probe(struct i2c_client *client,
  156. const struct i2c_device_id *id)
  157. {
  158. struct pmbus_driver_info *info;
  159. info = devm_kzalloc(&client->dev, sizeof(struct pmbus_driver_info),
  160. GFP_KERNEL);
  161. if (!info)
  162. return -ENOMEM;
  163. info->pages = id->driver_data;
  164. info->identify = pmbus_identify;
  165. return pmbus_do_probe(client, id, info);
  166. }
  167. /*
  168. * Use driver_data to set the number of pages supported by the chip.
  169. */
  170. static const struct i2c_device_id pmbus_id[] = {
  171. {"adp4000", 1},
  172. {"bmr453", 1},
  173. {"bmr454", 1},
  174. {"mdt040", 1},
  175. {"ncp4200", 1},
  176. {"ncp4208", 1},
  177. {"pdt003", 1},
  178. {"pdt006", 1},
  179. {"pdt012", 1},
  180. {"pmbus", 0},
  181. {"tps40400", 1},
  182. {"tps544b20", 1},
  183. {"tps544b25", 1},
  184. {"tps544c20", 1},
  185. {"tps544c25", 1},
  186. {"udt020", 1},
  187. {}
  188. };
  189. MODULE_DEVICE_TABLE(i2c, pmbus_id);
  190. /* This is the driver that will be inserted */
  191. static struct i2c_driver pmbus_driver = {
  192. .driver = {
  193. .name = "pmbus",
  194. },
  195. .probe = pmbus_probe,
  196. .remove = pmbus_do_remove,
  197. .id_table = pmbus_id,
  198. };
  199. module_i2c_driver(pmbus_driver);
  200. MODULE_AUTHOR("Guenter Roeck");
  201. MODULE_DESCRIPTION("Generic PMBus driver");
  202. MODULE_LICENSE("GPL");