max1586.c 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270
  1. /*
  2. * max1586.c -- Voltage and current regulation for the Maxim 1586
  3. *
  4. * Copyright (C) 2008 Robert Jarzmik
  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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  19. */
  20. #include <linux/module.h>
  21. #include <linux/err.h>
  22. #include <linux/i2c.h>
  23. #include <linux/platform_device.h>
  24. #include <linux/regulator/driver.h>
  25. #include <linux/slab.h>
  26. #include <linux/regulator/max1586.h>
  27. #define MAX1586_V3_MAX_VSEL 31
  28. #define MAX1586_V6_MAX_VSEL 3
  29. #define MAX1586_V3_MIN_UV 700000
  30. #define MAX1586_V3_MAX_UV 1475000
  31. #define MAX1586_V6_MIN_UV 0
  32. #define MAX1586_V6_MAX_UV 3000000
  33. #define I2C_V3_SELECT (0 << 5)
  34. #define I2C_V6_SELECT (1 << 5)
  35. struct max1586_data {
  36. struct i2c_client *client;
  37. /* min/max V3 voltage */
  38. unsigned int min_uV;
  39. unsigned int max_uV;
  40. struct regulator_dev *rdev[0];
  41. };
  42. /*
  43. * V6 voltage
  44. * On I2C bus, sending a "x" byte to the max1586 means :
  45. * set V6 to either 0V, 1.8V, 2.5V, 3V depending on (x & 0x3)
  46. * As regulator framework doesn't accept voltages to be 0V, we use 1uV.
  47. */
  48. static int v6_voltages_uv[] = { 1, 1800000, 2500000, 3000000 };
  49. /*
  50. * V3 voltage
  51. * On I2C bus, sending a "x" byte to the max1586 means :
  52. * set V3 to 0.700V + (x & 0x1f) * 0.025V
  53. * This voltage can be increased by external resistors
  54. * R24 and R25=100kOhm as described in the data sheet.
  55. * The gain is approximately: 1 + R24/R25 + R24/185.5kOhm
  56. */
  57. static int max1586_v3_calc_voltage(struct max1586_data *max1586,
  58. unsigned selector)
  59. {
  60. unsigned range_uV = max1586->max_uV - max1586->min_uV;
  61. return max1586->min_uV + (selector * range_uV / MAX1586_V3_MAX_VSEL);
  62. }
  63. static int max1586_v3_set(struct regulator_dev *rdev, int min_uV, int max_uV,
  64. unsigned *selector)
  65. {
  66. struct max1586_data *max1586 = rdev_get_drvdata(rdev);
  67. struct i2c_client *client = max1586->client;
  68. unsigned range_uV = max1586->max_uV - max1586->min_uV;
  69. u8 v3_prog;
  70. if (min_uV > max1586->max_uV || max_uV < max1586->min_uV)
  71. return -EINVAL;
  72. if (min_uV < max1586->min_uV)
  73. min_uV = max1586->min_uV;
  74. *selector = DIV_ROUND_UP((min_uV - max1586->min_uV) *
  75. MAX1586_V3_MAX_VSEL, range_uV);
  76. if (max1586_v3_calc_voltage(max1586, *selector) > max_uV)
  77. return -EINVAL;
  78. dev_dbg(&client->dev, "changing voltage v3 to %dmv\n",
  79. max1586_v3_calc_voltage(max1586, *selector) / 1000);
  80. v3_prog = I2C_V3_SELECT | (u8) *selector;
  81. return i2c_smbus_write_byte(client, v3_prog);
  82. }
  83. static int max1586_v3_list(struct regulator_dev *rdev, unsigned selector)
  84. {
  85. struct max1586_data *max1586 = rdev_get_drvdata(rdev);
  86. if (selector > MAX1586_V3_MAX_VSEL)
  87. return -EINVAL;
  88. return max1586_v3_calc_voltage(max1586, selector);
  89. }
  90. static int max1586_v6_set(struct regulator_dev *rdev, int min_uV, int max_uV,
  91. unsigned int *selector)
  92. {
  93. struct i2c_client *client = rdev_get_drvdata(rdev);
  94. u8 v6_prog;
  95. if (min_uV < MAX1586_V6_MIN_UV || min_uV > MAX1586_V6_MAX_UV)
  96. return -EINVAL;
  97. if (max_uV < MAX1586_V6_MIN_UV || max_uV > MAX1586_V6_MAX_UV)
  98. return -EINVAL;
  99. if (min_uV < 1800000)
  100. *selector = 0;
  101. else if (min_uV < 2500000)
  102. *selector = 1;
  103. else if (min_uV < 3000000)
  104. *selector = 2;
  105. else if (min_uV >= 3000000)
  106. *selector = 3;
  107. if (rdev->desc->volt_table[*selector] > max_uV)
  108. return -EINVAL;
  109. dev_dbg(&client->dev, "changing voltage v6 to %dmv\n",
  110. rdev->desc->volt_table[*selector] / 1000);
  111. v6_prog = I2C_V6_SELECT | (u8) *selector;
  112. return i2c_smbus_write_byte(client, v6_prog);
  113. }
  114. /*
  115. * The Maxim 1586 controls V3 and V6 voltages, but offers no way of reading back
  116. * the set up value.
  117. */
  118. static struct regulator_ops max1586_v3_ops = {
  119. .set_voltage = max1586_v3_set,
  120. .list_voltage = max1586_v3_list,
  121. };
  122. static struct regulator_ops max1586_v6_ops = {
  123. .set_voltage = max1586_v6_set,
  124. .list_voltage = regulator_list_voltage_table,
  125. };
  126. static const struct regulator_desc max1586_reg[] = {
  127. {
  128. .name = "Output_V3",
  129. .id = MAX1586_V3,
  130. .ops = &max1586_v3_ops,
  131. .type = REGULATOR_VOLTAGE,
  132. .n_voltages = MAX1586_V3_MAX_VSEL + 1,
  133. .owner = THIS_MODULE,
  134. },
  135. {
  136. .name = "Output_V6",
  137. .id = MAX1586_V6,
  138. .ops = &max1586_v6_ops,
  139. .type = REGULATOR_VOLTAGE,
  140. .n_voltages = MAX1586_V6_MAX_VSEL + 1,
  141. .volt_table = v6_voltages_uv,
  142. .owner = THIS_MODULE,
  143. },
  144. };
  145. static int __devinit max1586_pmic_probe(struct i2c_client *client,
  146. const struct i2c_device_id *i2c_id)
  147. {
  148. struct regulator_dev **rdev;
  149. struct max1586_platform_data *pdata = client->dev.platform_data;
  150. struct regulator_config config = { };
  151. struct max1586_data *max1586;
  152. int i, id, ret = -ENOMEM;
  153. max1586 = devm_kzalloc(&client->dev, sizeof(struct max1586_data) +
  154. sizeof(struct regulator_dev *) * (MAX1586_V6 + 1),
  155. GFP_KERNEL);
  156. if (!max1586)
  157. return -ENOMEM;
  158. max1586->client = client;
  159. if (!pdata->v3_gain)
  160. return -EINVAL;
  161. max1586->min_uV = MAX1586_V3_MIN_UV / 1000 * pdata->v3_gain / 1000;
  162. max1586->max_uV = MAX1586_V3_MAX_UV / 1000 * pdata->v3_gain / 1000;
  163. rdev = max1586->rdev;
  164. for (i = 0; i < pdata->num_subdevs && i <= MAX1586_V6; i++) {
  165. id = pdata->subdevs[i].id;
  166. if (!pdata->subdevs[i].platform_data)
  167. continue;
  168. if (id < MAX1586_V3 || id > MAX1586_V6) {
  169. dev_err(&client->dev, "invalid regulator id %d\n", id);
  170. goto err;
  171. }
  172. config.dev = &client->dev;
  173. config.init_data = pdata->subdevs[i].platform_data;
  174. config.driver_data = max1586;
  175. rdev[i] = regulator_register(&max1586_reg[id], &config);
  176. if (IS_ERR(rdev[i])) {
  177. ret = PTR_ERR(rdev[i]);
  178. dev_err(&client->dev, "failed to register %s\n",
  179. max1586_reg[id].name);
  180. goto err;
  181. }
  182. }
  183. i2c_set_clientdata(client, max1586);
  184. dev_info(&client->dev, "Maxim 1586 regulator driver loaded\n");
  185. return 0;
  186. err:
  187. while (--i >= 0)
  188. regulator_unregister(rdev[i]);
  189. return ret;
  190. }
  191. static int __devexit max1586_pmic_remove(struct i2c_client *client)
  192. {
  193. struct max1586_data *max1586 = i2c_get_clientdata(client);
  194. int i;
  195. for (i = 0; i <= MAX1586_V6; i++)
  196. if (max1586->rdev[i])
  197. regulator_unregister(max1586->rdev[i]);
  198. return 0;
  199. }
  200. static const struct i2c_device_id max1586_id[] = {
  201. { "max1586", 0 },
  202. { }
  203. };
  204. MODULE_DEVICE_TABLE(i2c, max1586_id);
  205. static struct i2c_driver max1586_pmic_driver = {
  206. .probe = max1586_pmic_probe,
  207. .remove = __devexit_p(max1586_pmic_remove),
  208. .driver = {
  209. .name = "max1586",
  210. .owner = THIS_MODULE,
  211. },
  212. .id_table = max1586_id,
  213. };
  214. static int __init max1586_pmic_init(void)
  215. {
  216. return i2c_add_driver(&max1586_pmic_driver);
  217. }
  218. subsys_initcall(max1586_pmic_init);
  219. static void __exit max1586_pmic_exit(void)
  220. {
  221. i2c_del_driver(&max1586_pmic_driver);
  222. }
  223. module_exit(max1586_pmic_exit);
  224. /* Module information */
  225. MODULE_DESCRIPTION("MAXIM 1586 voltage regulator driver");
  226. MODULE_AUTHOR("Robert Jarzmik");
  227. MODULE_LICENSE("GPL");