pmbus.c 5.5 KB

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