max1586.c 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328
  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. #include <linux/of_device.h>
  28. #include <linux/regulator/of_regulator.h>
  29. #define MAX1586_V3_MAX_VSEL 31
  30. #define MAX1586_V6_MAX_VSEL 3
  31. #define MAX1586_V3_MIN_UV 700000
  32. #define MAX1586_V3_MAX_UV 1475000
  33. #define MAX1586_V6_MIN_UV 0
  34. #define MAX1586_V6_MAX_UV 3000000
  35. #define I2C_V3_SELECT (0 << 5)
  36. #define I2C_V6_SELECT (1 << 5)
  37. struct max1586_data {
  38. struct i2c_client *client;
  39. /* min/max V3 voltage */
  40. unsigned int min_uV;
  41. unsigned int max_uV;
  42. unsigned int v3_curr_sel;
  43. unsigned int v6_curr_sel;
  44. };
  45. /*
  46. * V6 voltage
  47. * On I2C bus, sending a "x" byte to the max1586 means :
  48. * set V6 to either 0V, 1.8V, 2.5V, 3V depending on (x & 0x3)
  49. * As regulator framework doesn't accept voltages to be 0V, we use 1uV.
  50. */
  51. static const unsigned int v6_voltages_uv[] = { 1, 1800000, 2500000, 3000000 };
  52. /*
  53. * V3 voltage
  54. * On I2C bus, sending a "x" byte to the max1586 means :
  55. * set V3 to 0.700V + (x & 0x1f) * 0.025V
  56. * This voltage can be increased by external resistors
  57. * R24 and R25=100kOhm as described in the data sheet.
  58. * The gain is approximately: 1 + R24/R25 + R24/185.5kOhm
  59. */
  60. static int max1586_v3_get_voltage_sel(struct regulator_dev *rdev)
  61. {
  62. struct max1586_data *max1586 = rdev_get_drvdata(rdev);
  63. return max1586->v3_curr_sel;
  64. }
  65. static int max1586_v3_set_voltage_sel(struct regulator_dev *rdev,
  66. unsigned selector)
  67. {
  68. struct max1586_data *max1586 = rdev_get_drvdata(rdev);
  69. struct i2c_client *client = max1586->client;
  70. int ret;
  71. u8 v3_prog;
  72. dev_dbg(&client->dev, "changing voltage v3 to %dmv\n",
  73. regulator_list_voltage_linear(rdev, selector) / 1000);
  74. v3_prog = I2C_V3_SELECT | (u8) selector;
  75. ret = i2c_smbus_write_byte(client, v3_prog);
  76. if (ret)
  77. return ret;
  78. max1586->v3_curr_sel = selector;
  79. return 0;
  80. }
  81. static int max1586_v6_get_voltage_sel(struct regulator_dev *rdev)
  82. {
  83. struct max1586_data *max1586 = rdev_get_drvdata(rdev);
  84. return max1586->v6_curr_sel;
  85. }
  86. static int max1586_v6_set_voltage_sel(struct regulator_dev *rdev,
  87. unsigned int selector)
  88. {
  89. struct max1586_data *max1586 = rdev_get_drvdata(rdev);
  90. struct i2c_client *client = max1586->client;
  91. u8 v6_prog;
  92. int ret;
  93. dev_dbg(&client->dev, "changing voltage v6 to %dmv\n",
  94. rdev->desc->volt_table[selector] / 1000);
  95. v6_prog = I2C_V6_SELECT | (u8) selector;
  96. ret = i2c_smbus_write_byte(client, v6_prog);
  97. if (ret)
  98. return ret;
  99. max1586->v6_curr_sel = selector;
  100. return 0;
  101. }
  102. /*
  103. * The Maxim 1586 controls V3 and V6 voltages, but offers no way of reading back
  104. * the set up value.
  105. */
  106. static struct regulator_ops max1586_v3_ops = {
  107. .get_voltage_sel = max1586_v3_get_voltage_sel,
  108. .set_voltage_sel = max1586_v3_set_voltage_sel,
  109. .list_voltage = regulator_list_voltage_linear,
  110. .map_voltage = regulator_map_voltage_linear,
  111. };
  112. static struct regulator_ops max1586_v6_ops = {
  113. .get_voltage_sel = max1586_v6_get_voltage_sel,
  114. .set_voltage_sel = max1586_v6_set_voltage_sel,
  115. .list_voltage = regulator_list_voltage_table,
  116. };
  117. static struct regulator_desc max1586_reg[] = {
  118. {
  119. .name = "Output_V3",
  120. .id = MAX1586_V3,
  121. .ops = &max1586_v3_ops,
  122. .type = REGULATOR_VOLTAGE,
  123. .n_voltages = MAX1586_V3_MAX_VSEL + 1,
  124. .owner = THIS_MODULE,
  125. },
  126. {
  127. .name = "Output_V6",
  128. .id = MAX1586_V6,
  129. .ops = &max1586_v6_ops,
  130. .type = REGULATOR_VOLTAGE,
  131. .n_voltages = MAX1586_V6_MAX_VSEL + 1,
  132. .volt_table = v6_voltages_uv,
  133. .owner = THIS_MODULE,
  134. },
  135. };
  136. static int of_get_max1586_platform_data(struct device *dev,
  137. struct max1586_platform_data *pdata)
  138. {
  139. struct max1586_subdev_data *sub;
  140. struct of_regulator_match rmatch[ARRAY_SIZE(max1586_reg)] = { };
  141. struct device_node *np = dev->of_node;
  142. int i, matched;
  143. if (of_property_read_u32(np, "v3-gain",
  144. &pdata->v3_gain) < 0) {
  145. dev_err(dev, "%s has no 'v3-gain' property\n", np->full_name);
  146. return -EINVAL;
  147. }
  148. np = of_get_child_by_name(np, "regulators");
  149. if (!np) {
  150. dev_err(dev, "missing 'regulators' subnode in DT\n");
  151. return -EINVAL;
  152. }
  153. for (i = 0; i < ARRAY_SIZE(rmatch); i++)
  154. rmatch[i].name = max1586_reg[i].name;
  155. matched = of_regulator_match(dev, np, rmatch, ARRAY_SIZE(rmatch));
  156. of_node_put(np);
  157. /*
  158. * If matched is 0, ie. neither Output_V3 nor Output_V6 have been found,
  159. * return 0, which signals the normal situation where no subregulator is
  160. * available. This is normal because the max1586 doesn't provide any
  161. * readback support, so the subregulators can't report any status
  162. * anyway. If matched < 0, return the error.
  163. */
  164. if (matched <= 0)
  165. return matched;
  166. pdata->subdevs = devm_kzalloc(dev, sizeof(struct max1586_subdev_data) *
  167. matched, GFP_KERNEL);
  168. if (!pdata->subdevs)
  169. return -ENOMEM;
  170. pdata->num_subdevs = matched;
  171. sub = pdata->subdevs;
  172. for (i = 0; i < matched; i++) {
  173. sub->id = i;
  174. sub->name = rmatch[i].of_node->name;
  175. sub->platform_data = rmatch[i].init_data;
  176. sub++;
  177. }
  178. return 0;
  179. }
  180. static const struct of_device_id max1586_of_match[] = {
  181. { .compatible = "maxim,max1586", },
  182. {},
  183. };
  184. MODULE_DEVICE_TABLE(of, max1586_of_match);
  185. static int max1586_pmic_probe(struct i2c_client *client,
  186. const struct i2c_device_id *i2c_id)
  187. {
  188. struct max1586_platform_data *pdata, pdata_of;
  189. struct regulator_config config = { };
  190. struct max1586_data *max1586;
  191. int i, id, ret;
  192. const struct of_device_id *match;
  193. pdata = dev_get_platdata(&client->dev);
  194. if (client->dev.of_node && !pdata) {
  195. match = of_match_device(of_match_ptr(max1586_of_match),
  196. &client->dev);
  197. if (!match) {
  198. dev_err(&client->dev, "Error: No device match found\n");
  199. return -ENODEV;
  200. }
  201. ret = of_get_max1586_platform_data(&client->dev, &pdata_of);
  202. if (ret < 0)
  203. return ret;
  204. pdata = &pdata_of;
  205. }
  206. max1586 = devm_kzalloc(&client->dev, sizeof(struct max1586_data),
  207. GFP_KERNEL);
  208. if (!max1586)
  209. return -ENOMEM;
  210. max1586->client = client;
  211. if (!pdata->v3_gain)
  212. return -EINVAL;
  213. max1586->min_uV = MAX1586_V3_MIN_UV / 1000 * pdata->v3_gain / 1000;
  214. max1586->max_uV = MAX1586_V3_MAX_UV / 1000 * pdata->v3_gain / 1000;
  215. /* Set curr_sel to default voltage on power-up */
  216. max1586->v3_curr_sel = 24; /* 1.3V */
  217. max1586->v6_curr_sel = 0;
  218. for (i = 0; i < pdata->num_subdevs && i <= MAX1586_V6; i++) {
  219. struct regulator_dev *rdev;
  220. id = pdata->subdevs[i].id;
  221. if (!pdata->subdevs[i].platform_data)
  222. continue;
  223. if (id < MAX1586_V3 || id > MAX1586_V6) {
  224. dev_err(&client->dev, "invalid regulator id %d\n", id);
  225. return -EINVAL;
  226. }
  227. if (id == MAX1586_V3) {
  228. max1586_reg[id].min_uV = max1586->min_uV;
  229. max1586_reg[id].uV_step =
  230. (max1586->max_uV - max1586->min_uV) /
  231. MAX1586_V3_MAX_VSEL;
  232. }
  233. config.dev = &client->dev;
  234. config.init_data = pdata->subdevs[i].platform_data;
  235. config.driver_data = max1586;
  236. rdev = devm_regulator_register(&client->dev,
  237. &max1586_reg[id], &config);
  238. if (IS_ERR(rdev)) {
  239. dev_err(&client->dev, "failed to register %s\n",
  240. max1586_reg[id].name);
  241. return PTR_ERR(rdev);
  242. }
  243. }
  244. i2c_set_clientdata(client, max1586);
  245. dev_info(&client->dev, "Maxim 1586 regulator driver loaded\n");
  246. return 0;
  247. }
  248. static const struct i2c_device_id max1586_id[] = {
  249. { "max1586", 0 },
  250. { }
  251. };
  252. MODULE_DEVICE_TABLE(i2c, max1586_id);
  253. static struct i2c_driver max1586_pmic_driver = {
  254. .probe = max1586_pmic_probe,
  255. .driver = {
  256. .name = "max1586",
  257. .of_match_table = of_match_ptr(max1586_of_match),
  258. },
  259. .id_table = max1586_id,
  260. };
  261. static int __init max1586_pmic_init(void)
  262. {
  263. return i2c_add_driver(&max1586_pmic_driver);
  264. }
  265. subsys_initcall(max1586_pmic_init);
  266. static void __exit max1586_pmic_exit(void)
  267. {
  268. i2c_del_driver(&max1586_pmic_driver);
  269. }
  270. module_exit(max1586_pmic_exit);
  271. /* Module information */
  272. MODULE_DESCRIPTION("MAXIM 1586 voltage regulator driver");
  273. MODULE_AUTHOR("Robert Jarzmik");
  274. MODULE_LICENSE("GPL");