tps51632-regulator.c 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373
  1. /*
  2. * tps51632-regulator.c -- TI TPS51632
  3. *
  4. * Regulator driver for TPS51632 3-2-1 Phase D-Cap Step Down Driverless
  5. * Controller with serial VID control and DVFS.
  6. *
  7. * Copyright (c) 2012, NVIDIA Corporation.
  8. *
  9. * Author: Laxman Dewangan <ldewangan@nvidia.com>
  10. *
  11. * This program is free software; you can redistribute it and/or
  12. * modify it under the terms of the GNU General Public License as
  13. * published by the Free Software Foundation version 2.
  14. *
  15. * This program is distributed "as is" WITHOUT ANY WARRANTY of any kind,
  16. * whether express or implied; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  18. * General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU General Public License
  21. * along with this program; if not, write to the Free Software
  22. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  23. * 02111-1307, USA
  24. */
  25. #include <linux/err.h>
  26. #include <linux/i2c.h>
  27. #include <linux/init.h>
  28. #include <linux/kernel.h>
  29. #include <linux/module.h>
  30. #include <linux/platform_device.h>
  31. #include <linux/regmap.h>
  32. #include <linux/regulator/driver.h>
  33. #include <linux/regulator/machine.h>
  34. #include <linux/regulator/tps51632-regulator.h>
  35. #include <linux/slab.h>
  36. /* Register definitions */
  37. #define TPS51632_VOLTAGE_SELECT_REG 0x0
  38. #define TPS51632_VOLTAGE_BASE_REG 0x1
  39. #define TPS51632_OFFSET_REG 0x2
  40. #define TPS51632_IMON_REG 0x3
  41. #define TPS51632_VMAX_REG 0x4
  42. #define TPS51632_DVFS_CONTROL_REG 0x5
  43. #define TPS51632_POWER_STATE_REG 0x6
  44. #define TPS51632_SLEW_REGS 0x7
  45. #define TPS51632_FAULT_REG 0x14
  46. #define TPS51632_MAX_REG 0x15
  47. #define TPS51632_VOUT_MASK 0x7F
  48. #define TPS51632_VOUT_OFFSET_MASK 0x1F
  49. #define TPS51632_VMAX_MASK 0x7F
  50. #define TPS51632_VMAX_LOCK 0x80
  51. /* TPS51632_DVFS_CONTROL_REG */
  52. #define TPS51632_DVFS_PWMEN 0x1
  53. #define TPS51632_DVFS_STEP_20 0x2
  54. #define TPS51632_DVFS_VMAX_PG 0x4
  55. #define TPS51632_DVFS_PWMRST 0x8
  56. #define TPS51632_DVFS_OCA_EN 0x10
  57. #define TPS51632_DVFS_FCCM 0x20
  58. /* TPS51632_POWER_STATE_REG */
  59. #define TPS51632_POWER_STATE_MASK 0x03
  60. #define TPS51632_POWER_STATE_MULTI_PHASE_CCM 0x0
  61. #define TPS51632_POWER_STATE_SINGLE_PHASE_CCM 0x1
  62. #define TPS51632_POWER_STATE_SINGLE_PHASE_DCM 0x2
  63. #define TPS51632_MIN_VOLATGE 500000
  64. #define TPS51632_MAX_VOLATGE 1520000
  65. #define TPS51632_VOLATGE_STEP_10mV 10000
  66. #define TPS51632_VOLATGE_STEP_20mV 20000
  67. #define TPS51632_MAX_VSEL 0x7F
  68. #define TPS51632_MIN_VSEL 0x19
  69. #define TPS51632_DEFAULT_RAMP_DELAY 6000
  70. #define TPS51632_VOLT_VSEL(uV) \
  71. (DIV_ROUND_UP(uV - TPS51632_MIN_VOLATGE, \
  72. TPS51632_VOLATGE_STEP_10mV) + \
  73. TPS51632_MIN_VSEL)
  74. /* TPS51632 chip information */
  75. struct tps51632_chip {
  76. struct device *dev;
  77. struct regulator_desc desc;
  78. struct regulator_dev *rdev;
  79. struct regmap *regmap;
  80. bool enable_pwm_dvfs;
  81. };
  82. static int tps51632_dcdc_get_voltage_sel(struct regulator_dev *rdev)
  83. {
  84. struct tps51632_chip *tps = rdev_get_drvdata(rdev);
  85. unsigned int data;
  86. int ret;
  87. unsigned int reg = TPS51632_VOLTAGE_SELECT_REG;
  88. int vsel;
  89. if (tps->enable_pwm_dvfs)
  90. reg = TPS51632_VOLTAGE_BASE_REG;
  91. ret = regmap_read(tps->regmap, reg, &data);
  92. if (ret < 0) {
  93. dev_err(tps->dev, "reg read failed, err %d\n", ret);
  94. return ret;
  95. }
  96. vsel = data & TPS51632_VOUT_MASK;
  97. return vsel;
  98. }
  99. static int tps51632_dcdc_set_voltage_sel(struct regulator_dev *rdev,
  100. unsigned selector)
  101. {
  102. struct tps51632_chip *tps = rdev_get_drvdata(rdev);
  103. int ret;
  104. unsigned int reg = TPS51632_VOLTAGE_SELECT_REG;
  105. if (tps->enable_pwm_dvfs)
  106. reg = TPS51632_VOLTAGE_BASE_REG;
  107. if (selector > TPS51632_MAX_VSEL)
  108. return -EINVAL;
  109. ret = regmap_write(tps->regmap, reg, selector);
  110. if (ret < 0)
  111. dev_err(tps->dev, "reg write failed, err %d\n", ret);
  112. return ret;
  113. }
  114. static int tps51632_dcdc_set_ramp_delay(struct regulator_dev *rdev,
  115. int ramp_delay)
  116. {
  117. struct tps51632_chip *tps = rdev_get_drvdata(rdev);
  118. int bit = ramp_delay/6000;
  119. int ret;
  120. if (bit)
  121. bit--;
  122. ret = regmap_write(tps->regmap, TPS51632_SLEW_REGS, BIT(bit));
  123. if (ret < 0)
  124. dev_err(tps->dev, "SLEW reg write failed, err %d\n", ret);
  125. return ret;
  126. }
  127. static struct regulator_ops tps51632_dcdc_ops = {
  128. .get_voltage_sel = tps51632_dcdc_get_voltage_sel,
  129. .set_voltage_sel = tps51632_dcdc_set_voltage_sel,
  130. .list_voltage = regulator_list_voltage_linear,
  131. .set_voltage_time_sel = regulator_set_voltage_time_sel,
  132. .set_ramp_delay = tps51632_dcdc_set_ramp_delay,
  133. };
  134. static int tps51632_init_dcdc(struct tps51632_chip *tps,
  135. struct tps51632_regulator_platform_data *pdata)
  136. {
  137. int ret;
  138. uint8_t control = 0;
  139. int vsel;
  140. if (!pdata->enable_pwm_dvfs)
  141. goto skip_pwm_config;
  142. control |= TPS51632_DVFS_PWMEN;
  143. tps->enable_pwm_dvfs = pdata->enable_pwm_dvfs;
  144. vsel = TPS51632_VOLT_VSEL(pdata->base_voltage_uV);
  145. ret = regmap_write(tps->regmap, TPS51632_VOLTAGE_BASE_REG, vsel);
  146. if (ret < 0) {
  147. dev_err(tps->dev, "BASE reg write failed, err %d\n", ret);
  148. return ret;
  149. }
  150. if (pdata->dvfs_step_20mV)
  151. control |= TPS51632_DVFS_STEP_20;
  152. if (pdata->max_voltage_uV) {
  153. unsigned int vmax;
  154. /**
  155. * TPS51632 hw behavior: VMAX register can be write only
  156. * once as it get locked after first write. The lock get
  157. * reset only when device is power-reset.
  158. * Write register only when lock bit is not enabled.
  159. */
  160. ret = regmap_read(tps->regmap, TPS51632_VMAX_REG, &vmax);
  161. if (ret < 0) {
  162. dev_err(tps->dev, "VMAX read failed, err %d\n", ret);
  163. return ret;
  164. }
  165. if (!(vmax & TPS51632_VMAX_LOCK)) {
  166. vsel = TPS51632_VOLT_VSEL(pdata->max_voltage_uV);
  167. ret = regmap_write(tps->regmap, TPS51632_VMAX_REG,
  168. vsel);
  169. if (ret < 0) {
  170. dev_err(tps->dev,
  171. "VMAX write failed, err %d\n", ret);
  172. return ret;
  173. }
  174. }
  175. }
  176. skip_pwm_config:
  177. ret = regmap_write(tps->regmap, TPS51632_DVFS_CONTROL_REG, control);
  178. if (ret < 0)
  179. dev_err(tps->dev, "DVFS reg write failed, err %d\n", ret);
  180. return ret;
  181. }
  182. static bool is_volatile_reg(struct device *dev, unsigned int reg)
  183. {
  184. switch (reg) {
  185. case TPS51632_OFFSET_REG:
  186. case TPS51632_FAULT_REG:
  187. case TPS51632_IMON_REG:
  188. return true;
  189. default:
  190. return false;
  191. }
  192. }
  193. static bool is_read_reg(struct device *dev, unsigned int reg)
  194. {
  195. switch (reg) {
  196. case 0x08 ... 0x0F:
  197. return false;
  198. default:
  199. return true;
  200. }
  201. }
  202. static bool is_write_reg(struct device *dev, unsigned int reg)
  203. {
  204. switch (reg) {
  205. case TPS51632_VOLTAGE_SELECT_REG:
  206. case TPS51632_VOLTAGE_BASE_REG:
  207. case TPS51632_VMAX_REG:
  208. case TPS51632_DVFS_CONTROL_REG:
  209. case TPS51632_POWER_STATE_REG:
  210. case TPS51632_SLEW_REGS:
  211. return true;
  212. default:
  213. return false;
  214. }
  215. }
  216. static const struct regmap_config tps51632_regmap_config = {
  217. .reg_bits = 8,
  218. .val_bits = 8,
  219. .writeable_reg = is_write_reg,
  220. .readable_reg = is_read_reg,
  221. .volatile_reg = is_volatile_reg,
  222. .max_register = TPS51632_MAX_REG - 1,
  223. .cache_type = REGCACHE_RBTREE,
  224. };
  225. static int tps51632_probe(struct i2c_client *client,
  226. const struct i2c_device_id *id)
  227. {
  228. struct tps51632_regulator_platform_data *pdata;
  229. struct regulator_dev *rdev;
  230. struct tps51632_chip *tps;
  231. int ret;
  232. struct regulator_config config = { };
  233. pdata = client->dev.platform_data;
  234. if (!pdata) {
  235. dev_err(&client->dev, "No Platform data\n");
  236. return -EINVAL;
  237. }
  238. if (pdata->enable_pwm_dvfs) {
  239. if ((pdata->base_voltage_uV < TPS51632_MIN_VOLATGE) ||
  240. (pdata->base_voltage_uV > TPS51632_MAX_VOLATGE)) {
  241. dev_err(&client->dev, "Invalid base_voltage_uV setting\n");
  242. return -EINVAL;
  243. }
  244. if ((pdata->max_voltage_uV) &&
  245. ((pdata->max_voltage_uV < TPS51632_MIN_VOLATGE) ||
  246. (pdata->max_voltage_uV > TPS51632_MAX_VOLATGE))) {
  247. dev_err(&client->dev, "Invalid max_voltage_uV setting\n");
  248. return -EINVAL;
  249. }
  250. }
  251. tps = devm_kzalloc(&client->dev, sizeof(*tps), GFP_KERNEL);
  252. if (!tps) {
  253. dev_err(&client->dev, "Memory allocation failed\n");
  254. return -ENOMEM;
  255. }
  256. tps->dev = &client->dev;
  257. tps->desc.name = id->name;
  258. tps->desc.id = 0;
  259. tps->desc.ramp_delay = TPS51632_DEFAULT_RAMP_DELAY;
  260. tps->desc.min_uV = TPS51632_MIN_VOLATGE;
  261. tps->desc.uV_step = TPS51632_VOLATGE_STEP_10mV;
  262. tps->desc.linear_min_sel = TPS51632_MIN_VSEL;
  263. tps->desc.n_voltages = TPS51632_MAX_VSEL + 1;
  264. tps->desc.ops = &tps51632_dcdc_ops;
  265. tps->desc.type = REGULATOR_VOLTAGE;
  266. tps->desc.owner = THIS_MODULE;
  267. tps->regmap = devm_regmap_init_i2c(client, &tps51632_regmap_config);
  268. if (IS_ERR(tps->regmap)) {
  269. ret = PTR_ERR(tps->regmap);
  270. dev_err(&client->dev, "regmap init failed, err %d\n", ret);
  271. return ret;
  272. }
  273. i2c_set_clientdata(client, tps);
  274. ret = tps51632_init_dcdc(tps, pdata);
  275. if (ret < 0) {
  276. dev_err(tps->dev, "Init failed, err = %d\n", ret);
  277. return ret;
  278. }
  279. /* Register the regulators */
  280. config.dev = &client->dev;
  281. config.init_data = pdata->reg_init_data;
  282. config.driver_data = tps;
  283. config.regmap = tps->regmap;
  284. config.of_node = client->dev.of_node;
  285. rdev = regulator_register(&tps->desc, &config);
  286. if (IS_ERR(rdev)) {
  287. dev_err(tps->dev, "regulator register failed\n");
  288. return PTR_ERR(rdev);
  289. }
  290. tps->rdev = rdev;
  291. return 0;
  292. }
  293. static int tps51632_remove(struct i2c_client *client)
  294. {
  295. struct tps51632_chip *tps = i2c_get_clientdata(client);
  296. regulator_unregister(tps->rdev);
  297. return 0;
  298. }
  299. static const struct i2c_device_id tps51632_id[] = {
  300. {.name = "tps51632",},
  301. {},
  302. };
  303. MODULE_DEVICE_TABLE(i2c, tps51632_id);
  304. static struct i2c_driver tps51632_i2c_driver = {
  305. .driver = {
  306. .name = "tps51632",
  307. .owner = THIS_MODULE,
  308. },
  309. .probe = tps51632_probe,
  310. .remove = tps51632_remove,
  311. .id_table = tps51632_id,
  312. };
  313. static int __init tps51632_init(void)
  314. {
  315. return i2c_add_driver(&tps51632_i2c_driver);
  316. }
  317. subsys_initcall(tps51632_init);
  318. static void __exit tps51632_cleanup(void)
  319. {
  320. i2c_del_driver(&tps51632_i2c_driver);
  321. }
  322. module_exit(tps51632_cleanup);
  323. MODULE_AUTHOR("Laxman Dewangan <ldewangan@nvidia.com>");
  324. MODULE_DESCRIPTION("TPS51632 voltage regulator driver");
  325. MODULE_LICENSE("GPL v2");