pmbus.c 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  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_byte_register(client, 0,
  62. PMBUS_STATUS_TEMPERATURE))
  63. info->func[0] |= PMBUS_HAVE_STATUS_TEMP;
  64. }
  65. if (pmbus_check_word_register(client, 0, PMBUS_READ_TEMPERATURE_2))
  66. info->func[0] |= PMBUS_HAVE_TEMP2;
  67. if (pmbus_check_word_register(client, 0, PMBUS_READ_TEMPERATURE_3))
  68. info->func[0] |= PMBUS_HAVE_TEMP3;
  69. /* Sensors detected on all pages */
  70. for (page = 0; page < info->pages; page++) {
  71. if (pmbus_check_word_register(client, page, PMBUS_READ_VOUT)) {
  72. info->func[page] |= PMBUS_HAVE_VOUT;
  73. if (pmbus_check_byte_register(client, page,
  74. PMBUS_STATUS_VOUT))
  75. info->func[page] |= PMBUS_HAVE_STATUS_VOUT;
  76. }
  77. if (pmbus_check_word_register(client, page, PMBUS_READ_IOUT)) {
  78. info->func[page] |= PMBUS_HAVE_IOUT;
  79. if (pmbus_check_byte_register(client, 0,
  80. PMBUS_STATUS_IOUT))
  81. info->func[page] |= PMBUS_HAVE_STATUS_IOUT;
  82. }
  83. if (pmbus_check_word_register(client, page, PMBUS_READ_POUT))
  84. info->func[page] |= PMBUS_HAVE_POUT;
  85. }
  86. }
  87. /*
  88. * Identify chip parameters.
  89. */
  90. static int pmbus_identify(struct i2c_client *client,
  91. struct pmbus_driver_info *info)
  92. {
  93. if (!info->pages) {
  94. /*
  95. * Check if the PAGE command is supported. If it is,
  96. * keep setting the page number until it fails or until the
  97. * maximum number of pages has been reached. Assume that
  98. * this is the number of pages supported by the chip.
  99. */
  100. if (pmbus_check_byte_register(client, 0, PMBUS_PAGE)) {
  101. int page;
  102. for (page = 1; page < PMBUS_PAGES; page++) {
  103. if (pmbus_set_page(client, page) < 0)
  104. break;
  105. }
  106. pmbus_set_page(client, 0);
  107. info->pages = page;
  108. } else {
  109. info->pages = 1;
  110. }
  111. }
  112. /*
  113. * We should check if the COEFFICIENTS register is supported.
  114. * If it is, and the chip is configured for direct mode, we can read
  115. * the coefficients from the chip, one set per group of sensor
  116. * registers.
  117. *
  118. * To do this, we will need access to a chip which actually supports the
  119. * COEFFICIENTS command, since the command is too complex to implement
  120. * without testing it.
  121. */
  122. /* Try to find sensor groups */
  123. pmbus_find_sensor_groups(client, info);
  124. return 0;
  125. }
  126. static int pmbus_probe(struct i2c_client *client,
  127. const struct i2c_device_id *id)
  128. {
  129. struct pmbus_driver_info *info;
  130. int ret;
  131. info = kzalloc(sizeof(struct pmbus_driver_info), GFP_KERNEL);
  132. if (!info)
  133. return -ENOMEM;
  134. info->pages = id->driver_data;
  135. info->identify = pmbus_identify;
  136. ret = pmbus_do_probe(client, id, info);
  137. if (ret < 0)
  138. goto out;
  139. return 0;
  140. out:
  141. kfree(info);
  142. return ret;
  143. }
  144. static int pmbus_remove(struct i2c_client *client)
  145. {
  146. int ret;
  147. const struct pmbus_driver_info *info;
  148. info = pmbus_get_driver_info(client);
  149. ret = pmbus_do_remove(client);
  150. kfree(info);
  151. return ret;
  152. }
  153. /*
  154. * Use driver_data to set the number of pages supported by the chip.
  155. */
  156. static const struct i2c_device_id pmbus_id[] = {
  157. {"bmr450", 1},
  158. {"bmr451", 1},
  159. {"bmr453", 1},
  160. {"bmr454", 1},
  161. {"ltc2978", 8},
  162. {"pmbus", 0},
  163. {}
  164. };
  165. MODULE_DEVICE_TABLE(i2c, pmbus_id);
  166. /* This is the driver that will be inserted */
  167. static struct i2c_driver pmbus_driver = {
  168. .driver = {
  169. .name = "pmbus",
  170. },
  171. .probe = pmbus_probe,
  172. .remove = pmbus_remove,
  173. .id_table = pmbus_id,
  174. };
  175. static int __init pmbus_init(void)
  176. {
  177. return i2c_add_driver(&pmbus_driver);
  178. }
  179. static void __exit pmbus_exit(void)
  180. {
  181. i2c_del_driver(&pmbus_driver);
  182. }
  183. MODULE_AUTHOR("Guenter Roeck");
  184. MODULE_DESCRIPTION("Generic PMBus driver");
  185. MODULE_LICENSE("GPL");
  186. module_init(pmbus_init);
  187. module_exit(pmbus_exit);