tps51632-regulator.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432
  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/of.h>
  31. #include <linux/of_device.h>
  32. #include <linux/platform_device.h>
  33. #include <linux/regmap.h>
  34. #include <linux/regulator/driver.h>
  35. #include <linux/regulator/machine.h>
  36. #include <linux/regulator/of_regulator.h>
  37. #include <linux/regulator/tps51632-regulator.h>
  38. #include <linux/slab.h>
  39. /* Register definitions */
  40. #define TPS51632_VOLTAGE_SELECT_REG 0x0
  41. #define TPS51632_VOLTAGE_BASE_REG 0x1
  42. #define TPS51632_OFFSET_REG 0x2
  43. #define TPS51632_IMON_REG 0x3
  44. #define TPS51632_VMAX_REG 0x4
  45. #define TPS51632_DVFS_CONTROL_REG 0x5
  46. #define TPS51632_POWER_STATE_REG 0x6
  47. #define TPS51632_SLEW_REGS 0x7
  48. #define TPS51632_FAULT_REG 0x14
  49. #define TPS51632_MAX_REG 0x15
  50. #define TPS51632_VOUT_MASK 0x7F
  51. #define TPS51632_VOUT_OFFSET_MASK 0x1F
  52. #define TPS51632_VMAX_MASK 0x7F
  53. #define TPS51632_VMAX_LOCK 0x80
  54. /* TPS51632_DVFS_CONTROL_REG */
  55. #define TPS51632_DVFS_PWMEN 0x1
  56. #define TPS51632_DVFS_STEP_20 0x2
  57. #define TPS51632_DVFS_VMAX_PG 0x4
  58. #define TPS51632_DVFS_PWMRST 0x8
  59. #define TPS51632_DVFS_OCA_EN 0x10
  60. #define TPS51632_DVFS_FCCM 0x20
  61. /* TPS51632_POWER_STATE_REG */
  62. #define TPS51632_POWER_STATE_MASK 0x03
  63. #define TPS51632_POWER_STATE_MULTI_PHASE_CCM 0x0
  64. #define TPS51632_POWER_STATE_SINGLE_PHASE_CCM 0x1
  65. #define TPS51632_POWER_STATE_SINGLE_PHASE_DCM 0x2
  66. #define TPS51632_MIN_VOLATGE 500000
  67. #define TPS51632_MAX_VOLATGE 1520000
  68. #define TPS51632_VOLATGE_STEP_10mV 10000
  69. #define TPS51632_VOLATGE_STEP_20mV 20000
  70. #define TPS51632_MAX_VSEL 0x7F
  71. #define TPS51632_MIN_VSEL 0x19
  72. #define TPS51632_DEFAULT_RAMP_DELAY 6000
  73. #define TPS51632_VOLT_VSEL(uV) \
  74. (DIV_ROUND_UP(uV - TPS51632_MIN_VOLATGE, \
  75. TPS51632_VOLATGE_STEP_10mV) + \
  76. TPS51632_MIN_VSEL)
  77. /* TPS51632 chip information */
  78. struct tps51632_chip {
  79. struct device *dev;
  80. struct regulator_desc desc;
  81. struct regulator_dev *rdev;
  82. struct regmap *regmap;
  83. bool enable_pwm_dvfs;
  84. };
  85. static int tps51632_dcdc_get_voltage_sel(struct regulator_dev *rdev)
  86. {
  87. struct tps51632_chip *tps = rdev_get_drvdata(rdev);
  88. unsigned int data;
  89. int ret;
  90. unsigned int reg = TPS51632_VOLTAGE_SELECT_REG;
  91. int vsel;
  92. if (tps->enable_pwm_dvfs)
  93. reg = TPS51632_VOLTAGE_BASE_REG;
  94. ret = regmap_read(tps->regmap, reg, &data);
  95. if (ret < 0) {
  96. dev_err(tps->dev, "reg read failed, err %d\n", ret);
  97. return ret;
  98. }
  99. vsel = data & TPS51632_VOUT_MASK;
  100. return vsel;
  101. }
  102. static int tps51632_dcdc_set_voltage_sel(struct regulator_dev *rdev,
  103. unsigned selector)
  104. {
  105. struct tps51632_chip *tps = rdev_get_drvdata(rdev);
  106. int ret;
  107. unsigned int reg = TPS51632_VOLTAGE_SELECT_REG;
  108. if (tps->enable_pwm_dvfs)
  109. reg = TPS51632_VOLTAGE_BASE_REG;
  110. if (selector > TPS51632_MAX_VSEL)
  111. return -EINVAL;
  112. ret = regmap_write(tps->regmap, reg, selector);
  113. if (ret < 0)
  114. dev_err(tps->dev, "reg write failed, err %d\n", ret);
  115. return ret;
  116. }
  117. static int tps51632_dcdc_set_ramp_delay(struct regulator_dev *rdev,
  118. int ramp_delay)
  119. {
  120. struct tps51632_chip *tps = rdev_get_drvdata(rdev);
  121. int bit = ramp_delay/6000;
  122. int ret;
  123. if (bit)
  124. bit--;
  125. ret = regmap_write(tps->regmap, TPS51632_SLEW_REGS, BIT(bit));
  126. if (ret < 0)
  127. dev_err(tps->dev, "SLEW reg write failed, err %d\n", ret);
  128. return ret;
  129. }
  130. static struct regulator_ops tps51632_dcdc_ops = {
  131. .get_voltage_sel = tps51632_dcdc_get_voltage_sel,
  132. .set_voltage_sel = tps51632_dcdc_set_voltage_sel,
  133. .list_voltage = regulator_list_voltage_linear,
  134. .set_voltage_time_sel = regulator_set_voltage_time_sel,
  135. .set_ramp_delay = tps51632_dcdc_set_ramp_delay,
  136. };
  137. static int tps51632_init_dcdc(struct tps51632_chip *tps,
  138. struct tps51632_regulator_platform_data *pdata)
  139. {
  140. int ret;
  141. uint8_t control = 0;
  142. int vsel;
  143. if (!pdata->enable_pwm_dvfs)
  144. goto skip_pwm_config;
  145. control |= TPS51632_DVFS_PWMEN;
  146. tps->enable_pwm_dvfs = pdata->enable_pwm_dvfs;
  147. vsel = TPS51632_VOLT_VSEL(pdata->base_voltage_uV);
  148. ret = regmap_write(tps->regmap, TPS51632_VOLTAGE_BASE_REG, vsel);
  149. if (ret < 0) {
  150. dev_err(tps->dev, "BASE reg write failed, err %d\n", ret);
  151. return ret;
  152. }
  153. if (pdata->dvfs_step_20mV)
  154. control |= TPS51632_DVFS_STEP_20;
  155. if (pdata->max_voltage_uV) {
  156. unsigned int vmax;
  157. /**
  158. * TPS51632 hw behavior: VMAX register can be write only
  159. * once as it get locked after first write. The lock get
  160. * reset only when device is power-reset.
  161. * Write register only when lock bit is not enabled.
  162. */
  163. ret = regmap_read(tps->regmap, TPS51632_VMAX_REG, &vmax);
  164. if (ret < 0) {
  165. dev_err(tps->dev, "VMAX read failed, err %d\n", ret);
  166. return ret;
  167. }
  168. if (!(vmax & TPS51632_VMAX_LOCK)) {
  169. vsel = TPS51632_VOLT_VSEL(pdata->max_voltage_uV);
  170. ret = regmap_write(tps->regmap, TPS51632_VMAX_REG,
  171. vsel);
  172. if (ret < 0) {
  173. dev_err(tps->dev,
  174. "VMAX write failed, err %d\n", ret);
  175. return ret;
  176. }
  177. }
  178. }
  179. skip_pwm_config:
  180. ret = regmap_write(tps->regmap, TPS51632_DVFS_CONTROL_REG, control);
  181. if (ret < 0)
  182. dev_err(tps->dev, "DVFS reg write failed, err %d\n", ret);
  183. return ret;
  184. }
  185. static bool is_volatile_reg(struct device *dev, unsigned int reg)
  186. {
  187. switch (reg) {
  188. case TPS51632_OFFSET_REG:
  189. case TPS51632_FAULT_REG:
  190. case TPS51632_IMON_REG:
  191. return true;
  192. default:
  193. return false;
  194. }
  195. }
  196. static bool is_read_reg(struct device *dev, unsigned int reg)
  197. {
  198. switch (reg) {
  199. case 0x08 ... 0x0F:
  200. return false;
  201. default:
  202. return true;
  203. }
  204. }
  205. static bool is_write_reg(struct device *dev, unsigned int reg)
  206. {
  207. switch (reg) {
  208. case TPS51632_VOLTAGE_SELECT_REG:
  209. case TPS51632_VOLTAGE_BASE_REG:
  210. case TPS51632_VMAX_REG:
  211. case TPS51632_DVFS_CONTROL_REG:
  212. case TPS51632_POWER_STATE_REG:
  213. case TPS51632_SLEW_REGS:
  214. return true;
  215. default:
  216. return false;
  217. }
  218. }
  219. static const struct regmap_config tps51632_regmap_config = {
  220. .reg_bits = 8,
  221. .val_bits = 8,
  222. .writeable_reg = is_write_reg,
  223. .readable_reg = is_read_reg,
  224. .volatile_reg = is_volatile_reg,
  225. .max_register = TPS51632_MAX_REG - 1,
  226. .cache_type = REGCACHE_RBTREE,
  227. };
  228. #if defined(CONFIG_OF)
  229. static const struct of_device_id tps51632_of_match[] = {
  230. { .compatible = "ti,tps51632",},
  231. {},
  232. };
  233. MODULE_DEVICE_TABLE(of, tps51632_of_match);
  234. static struct tps51632_regulator_platform_data *
  235. of_get_tps51632_platform_data(struct device *dev)
  236. {
  237. struct tps51632_regulator_platform_data *pdata;
  238. struct device_node *np = dev->of_node;
  239. pdata = devm_kzalloc(dev, sizeof(*pdata), GFP_KERNEL);
  240. if (!pdata) {
  241. dev_err(dev, "Memory alloc failed for platform data\n");
  242. return NULL;
  243. }
  244. pdata->reg_init_data = of_get_regulator_init_data(dev, dev->of_node);
  245. if (!pdata->reg_init_data) {
  246. dev_err(dev, "Not able to get OF regulator init data\n");
  247. return NULL;
  248. }
  249. pdata->enable_pwm_dvfs =
  250. of_property_read_bool(np, "ti,enable-pwm-dvfs");
  251. pdata->dvfs_step_20mV = of_property_read_bool(np, "ti,dvfs-step-20mV");
  252. pdata->base_voltage_uV = pdata->reg_init_data->constraints.min_uV ? :
  253. TPS51632_MIN_VOLATGE;
  254. pdata->max_voltage_uV = pdata->reg_init_data->constraints.max_uV ? :
  255. TPS51632_MAX_VOLATGE;
  256. return pdata;
  257. }
  258. #else
  259. static struct tps51632_regulator_platform_data *
  260. of_get_tps51632_platform_data(struct device *dev)
  261. {
  262. return NULL;
  263. }
  264. #endif
  265. static int tps51632_probe(struct i2c_client *client,
  266. const struct i2c_device_id *id)
  267. {
  268. struct tps51632_regulator_platform_data *pdata;
  269. struct regulator_dev *rdev;
  270. struct tps51632_chip *tps;
  271. int ret;
  272. struct regulator_config config = { };
  273. if (client->dev.of_node) {
  274. const struct of_device_id *match;
  275. match = of_match_device(of_match_ptr(tps51632_of_match),
  276. &client->dev);
  277. if (!match) {
  278. dev_err(&client->dev, "Error: No device match found\n");
  279. return -ENODEV;
  280. }
  281. }
  282. pdata = client->dev.platform_data;
  283. if (!pdata && client->dev.of_node)
  284. pdata = of_get_tps51632_platform_data(&client->dev);
  285. if (!pdata) {
  286. dev_err(&client->dev, "No Platform data\n");
  287. return -EINVAL;
  288. }
  289. if (pdata->enable_pwm_dvfs) {
  290. if ((pdata->base_voltage_uV < TPS51632_MIN_VOLATGE) ||
  291. (pdata->base_voltage_uV > TPS51632_MAX_VOLATGE)) {
  292. dev_err(&client->dev, "Invalid base_voltage_uV setting\n");
  293. return -EINVAL;
  294. }
  295. if ((pdata->max_voltage_uV) &&
  296. ((pdata->max_voltage_uV < TPS51632_MIN_VOLATGE) ||
  297. (pdata->max_voltage_uV > TPS51632_MAX_VOLATGE))) {
  298. dev_err(&client->dev, "Invalid max_voltage_uV setting\n");
  299. return -EINVAL;
  300. }
  301. }
  302. tps = devm_kzalloc(&client->dev, sizeof(*tps), GFP_KERNEL);
  303. if (!tps) {
  304. dev_err(&client->dev, "Memory allocation failed\n");
  305. return -ENOMEM;
  306. }
  307. tps->dev = &client->dev;
  308. tps->desc.name = id->name;
  309. tps->desc.id = 0;
  310. tps->desc.ramp_delay = TPS51632_DEFAULT_RAMP_DELAY;
  311. tps->desc.min_uV = TPS51632_MIN_VOLATGE;
  312. tps->desc.uV_step = TPS51632_VOLATGE_STEP_10mV;
  313. tps->desc.linear_min_sel = TPS51632_MIN_VSEL;
  314. tps->desc.n_voltages = TPS51632_MAX_VSEL + 1;
  315. tps->desc.ops = &tps51632_dcdc_ops;
  316. tps->desc.type = REGULATOR_VOLTAGE;
  317. tps->desc.owner = THIS_MODULE;
  318. tps->regmap = devm_regmap_init_i2c(client, &tps51632_regmap_config);
  319. if (IS_ERR(tps->regmap)) {
  320. ret = PTR_ERR(tps->regmap);
  321. dev_err(&client->dev, "regmap init failed, err %d\n", ret);
  322. return ret;
  323. }
  324. i2c_set_clientdata(client, tps);
  325. ret = tps51632_init_dcdc(tps, pdata);
  326. if (ret < 0) {
  327. dev_err(tps->dev, "Init failed, err = %d\n", ret);
  328. return ret;
  329. }
  330. /* Register the regulators */
  331. config.dev = &client->dev;
  332. config.init_data = pdata->reg_init_data;
  333. config.driver_data = tps;
  334. config.regmap = tps->regmap;
  335. config.of_node = client->dev.of_node;
  336. rdev = regulator_register(&tps->desc, &config);
  337. if (IS_ERR(rdev)) {
  338. dev_err(tps->dev, "regulator register failed\n");
  339. return PTR_ERR(rdev);
  340. }
  341. tps->rdev = rdev;
  342. return 0;
  343. }
  344. static int tps51632_remove(struct i2c_client *client)
  345. {
  346. struct tps51632_chip *tps = i2c_get_clientdata(client);
  347. regulator_unregister(tps->rdev);
  348. return 0;
  349. }
  350. static const struct i2c_device_id tps51632_id[] = {
  351. {.name = "tps51632",},
  352. {},
  353. };
  354. MODULE_DEVICE_TABLE(i2c, tps51632_id);
  355. static struct i2c_driver tps51632_i2c_driver = {
  356. .driver = {
  357. .name = "tps51632",
  358. .owner = THIS_MODULE,
  359. .of_match_table = of_match_ptr(tps51632_of_match),
  360. },
  361. .probe = tps51632_probe,
  362. .remove = tps51632_remove,
  363. .id_table = tps51632_id,
  364. };
  365. static int __init tps51632_init(void)
  366. {
  367. return i2c_add_driver(&tps51632_i2c_driver);
  368. }
  369. subsys_initcall(tps51632_init);
  370. static void __exit tps51632_cleanup(void)
  371. {
  372. i2c_del_driver(&tps51632_i2c_driver);
  373. }
  374. module_exit(tps51632_cleanup);
  375. MODULE_AUTHOR("Laxman Dewangan <ldewangan@nvidia.com>");
  376. MODULE_DESCRIPTION("TPS51632 voltage regulator driver");
  377. MODULE_LICENSE("GPL v2");