max1586.c 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251
  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. unsigned int v3_curr_sel;
  41. unsigned int v6_curr_sel;
  42. };
  43. /*
  44. * V6 voltage
  45. * On I2C bus, sending a "x" byte to the max1586 means :
  46. * set V6 to either 0V, 1.8V, 2.5V, 3V depending on (x & 0x3)
  47. * As regulator framework doesn't accept voltages to be 0V, we use 1uV.
  48. */
  49. static const unsigned int v6_voltages_uv[] = { 1, 1800000, 2500000, 3000000 };
  50. /*
  51. * V3 voltage
  52. * On I2C bus, sending a "x" byte to the max1586 means :
  53. * set V3 to 0.700V + (x & 0x1f) * 0.025V
  54. * This voltage can be increased by external resistors
  55. * R24 and R25=100kOhm as described in the data sheet.
  56. * The gain is approximately: 1 + R24/R25 + R24/185.5kOhm
  57. */
  58. static int max1586_v3_get_voltage_sel(struct regulator_dev *rdev)
  59. {
  60. struct max1586_data *max1586 = rdev_get_drvdata(rdev);
  61. return max1586->v3_curr_sel;
  62. }
  63. static int max1586_v3_set_voltage_sel(struct regulator_dev *rdev,
  64. unsigned selector)
  65. {
  66. struct max1586_data *max1586 = rdev_get_drvdata(rdev);
  67. struct i2c_client *client = max1586->client;
  68. int ret;
  69. u8 v3_prog;
  70. dev_dbg(&client->dev, "changing voltage v3 to %dmv\n",
  71. regulator_list_voltage_linear(rdev, selector) / 1000);
  72. v3_prog = I2C_V3_SELECT | (u8) selector;
  73. ret = i2c_smbus_write_byte(client, v3_prog);
  74. if (ret)
  75. return ret;
  76. max1586->v3_curr_sel = selector;
  77. return 0;
  78. }
  79. static int max1586_v6_get_voltage_sel(struct regulator_dev *rdev)
  80. {
  81. struct max1586_data *max1586 = rdev_get_drvdata(rdev);
  82. return max1586->v6_curr_sel;
  83. }
  84. static int max1586_v6_set_voltage_sel(struct regulator_dev *rdev,
  85. unsigned int selector)
  86. {
  87. struct max1586_data *max1586 = rdev_get_drvdata(rdev);
  88. struct i2c_client *client = max1586->client;
  89. u8 v6_prog;
  90. int ret;
  91. dev_dbg(&client->dev, "changing voltage v6 to %dmv\n",
  92. rdev->desc->volt_table[selector] / 1000);
  93. v6_prog = I2C_V6_SELECT | (u8) selector;
  94. ret = i2c_smbus_write_byte(client, v6_prog);
  95. if (ret)
  96. return ret;
  97. max1586->v6_curr_sel = selector;
  98. return 0;
  99. }
  100. /*
  101. * The Maxim 1586 controls V3 and V6 voltages, but offers no way of reading back
  102. * the set up value.
  103. */
  104. static struct regulator_ops max1586_v3_ops = {
  105. .get_voltage_sel = max1586_v3_get_voltage_sel,
  106. .set_voltage_sel = max1586_v3_set_voltage_sel,
  107. .list_voltage = regulator_list_voltage_linear,
  108. .map_voltage = regulator_map_voltage_linear,
  109. };
  110. static struct regulator_ops max1586_v6_ops = {
  111. .get_voltage_sel = max1586_v6_get_voltage_sel,
  112. .set_voltage_sel = max1586_v6_set_voltage_sel,
  113. .list_voltage = regulator_list_voltage_table,
  114. };
  115. static struct regulator_desc max1586_reg[] = {
  116. {
  117. .name = "Output_V3",
  118. .id = MAX1586_V3,
  119. .ops = &max1586_v3_ops,
  120. .type = REGULATOR_VOLTAGE,
  121. .n_voltages = MAX1586_V3_MAX_VSEL + 1,
  122. .owner = THIS_MODULE,
  123. },
  124. {
  125. .name = "Output_V6",
  126. .id = MAX1586_V6,
  127. .ops = &max1586_v6_ops,
  128. .type = REGULATOR_VOLTAGE,
  129. .n_voltages = MAX1586_V6_MAX_VSEL + 1,
  130. .volt_table = v6_voltages_uv,
  131. .owner = THIS_MODULE,
  132. },
  133. };
  134. static int max1586_pmic_probe(struct i2c_client *client,
  135. const struct i2c_device_id *i2c_id)
  136. {
  137. struct max1586_platform_data *pdata = dev_get_platdata(&client->dev);
  138. struct regulator_config config = { };
  139. struct max1586_data *max1586;
  140. int i, id;
  141. max1586 = devm_kzalloc(&client->dev, sizeof(struct max1586_data),
  142. GFP_KERNEL);
  143. if (!max1586)
  144. return -ENOMEM;
  145. max1586->client = client;
  146. if (!pdata->v3_gain)
  147. return -EINVAL;
  148. max1586->min_uV = MAX1586_V3_MIN_UV / 1000 * pdata->v3_gain / 1000;
  149. max1586->max_uV = MAX1586_V3_MAX_UV / 1000 * pdata->v3_gain / 1000;
  150. /* Set curr_sel to default voltage on power-up */
  151. max1586->v3_curr_sel = 24; /* 1.3V */
  152. max1586->v6_curr_sel = 0;
  153. for (i = 0; i < pdata->num_subdevs && i <= MAX1586_V6; i++) {
  154. struct regulator_dev *rdev;
  155. id = pdata->subdevs[i].id;
  156. if (!pdata->subdevs[i].platform_data)
  157. continue;
  158. if (id < MAX1586_V3 || id > MAX1586_V6) {
  159. dev_err(&client->dev, "invalid regulator id %d\n", id);
  160. return -EINVAL;
  161. }
  162. if (id == MAX1586_V3) {
  163. max1586_reg[id].min_uV = max1586->min_uV;
  164. max1586_reg[id].uV_step =
  165. (max1586->max_uV - max1586->min_uV) /
  166. MAX1586_V3_MAX_VSEL;
  167. }
  168. config.dev = &client->dev;
  169. config.init_data = pdata->subdevs[i].platform_data;
  170. config.driver_data = max1586;
  171. rdev = devm_regulator_register(&client->dev,
  172. &max1586_reg[id], &config);
  173. if (IS_ERR(rdev)) {
  174. dev_err(&client->dev, "failed to register %s\n",
  175. max1586_reg[id].name);
  176. return PTR_ERR(rdev);
  177. }
  178. }
  179. i2c_set_clientdata(client, max1586);
  180. dev_info(&client->dev, "Maxim 1586 regulator driver loaded\n");
  181. return 0;
  182. }
  183. static const struct i2c_device_id max1586_id[] = {
  184. { "max1586", 0 },
  185. { }
  186. };
  187. MODULE_DEVICE_TABLE(i2c, max1586_id);
  188. static struct i2c_driver max1586_pmic_driver = {
  189. .probe = max1586_pmic_probe,
  190. .driver = {
  191. .name = "max1586",
  192. .owner = THIS_MODULE,
  193. },
  194. .id_table = max1586_id,
  195. };
  196. static int __init max1586_pmic_init(void)
  197. {
  198. return i2c_add_driver(&max1586_pmic_driver);
  199. }
  200. subsys_initcall(max1586_pmic_init);
  201. static void __exit max1586_pmic_exit(void)
  202. {
  203. i2c_del_driver(&max1586_pmic_driver);
  204. }
  205. module_exit(max1586_pmic_exit);
  206. /* Module information */
  207. MODULE_DESCRIPTION("MAXIM 1586 voltage regulator driver");
  208. MODULE_AUTHOR("Robert Jarzmik");
  209. MODULE_LICENSE("GPL");