msm-cdc-supply.c 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548
  1. /*
  2. * Copyright (c) 2016-2018, The Linux Foundation. All rights reserved.
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License version 2 and
  6. * only version 2 as published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. */
  13. #include <linux/kernel.h>
  14. #include <linux/module.h>
  15. #include <linux/of_irq.h>
  16. #include <linux/of_device.h>
  17. #include <linux/slab.h>
  18. #include "msm-cdc-supply.h"
  19. #include <linux/regulator/consumer.h>
  20. #define CODEC_DT_MAX_PROP_SIZE 40
  21. static int msm_cdc_dt_parse_vreg_info(struct device *dev,
  22. struct cdc_regulator *cdc_vreg,
  23. const char *name, bool is_ond)
  24. {
  25. char prop_name[CODEC_DT_MAX_PROP_SIZE];
  26. struct device_node *regulator_node = NULL;
  27. const __be32 *prop;
  28. int len, rc;
  29. u32 prop_val;
  30. /* Parse supply name */
  31. snprintf(prop_name, CODEC_DT_MAX_PROP_SIZE, "%s-supply", name);
  32. regulator_node = of_parse_phandle(dev->of_node, prop_name, 0);
  33. if (!regulator_node) {
  34. dev_err(dev, "%s: Looking up %s property in node %s failed",
  35. __func__, prop_name, dev->of_node->full_name);
  36. rc = -EINVAL;
  37. goto done;
  38. }
  39. cdc_vreg->name = name;
  40. cdc_vreg->ondemand = is_ond;
  41. /* Parse supply - voltage */
  42. snprintf(prop_name, CODEC_DT_MAX_PROP_SIZE, "qcom,%s-voltage", name);
  43. prop = of_get_property(dev->of_node, prop_name, &len);
  44. if (!prop || (len != (2 * sizeof(__be32)))) {
  45. dev_err(dev, "%s: %s %s property\n", __func__,
  46. prop ? "invalid format" : "no", prop_name);
  47. rc = -EINVAL;
  48. goto done;
  49. } else {
  50. cdc_vreg->min_uV = be32_to_cpup(&prop[0]);
  51. cdc_vreg->max_uV = be32_to_cpup(&prop[1]);
  52. }
  53. /* Parse supply - current */
  54. snprintf(prop_name, CODEC_DT_MAX_PROP_SIZE, "qcom,%s-current", name);
  55. rc = of_property_read_u32(dev->of_node, prop_name, &prop_val);
  56. if (rc) {
  57. dev_err(dev, "%s: Looking up %s property in node %s failed",
  58. __func__, prop_name, dev->of_node->full_name);
  59. goto done;
  60. }
  61. cdc_vreg->optimum_uA = prop_val;
  62. dev_info(dev, "%s: %s: vol=[%d %d]uV, curr=[%d]uA, ond %d\n",
  63. __func__, cdc_vreg->name, cdc_vreg->min_uV, cdc_vreg->max_uV,
  64. cdc_vreg->optimum_uA, cdc_vreg->ondemand);
  65. done:
  66. return rc;
  67. }
  68. static int msm_cdc_parse_supplies(struct device *dev,
  69. struct cdc_regulator *cdc_reg,
  70. const char *sup_list, int sup_cnt,
  71. bool is_ond)
  72. {
  73. int idx, rc = 0;
  74. const char *name = NULL;
  75. for (idx = 0; idx < sup_cnt; idx++) {
  76. rc = of_property_read_string_index(dev->of_node, sup_list, idx,
  77. &name);
  78. if (rc) {
  79. dev_err(dev, "%s: read string %s[%d] error (%d)\n",
  80. __func__, sup_list, idx, rc);
  81. goto done;
  82. }
  83. dev_dbg(dev, "%s: Found cdc supply %s as part of %s\n",
  84. __func__, name, sup_list);
  85. rc = msm_cdc_dt_parse_vreg_info(dev, &cdc_reg[idx], name,
  86. is_ond);
  87. if (rc) {
  88. dev_err(dev, "%s: parse %s vreg info failed (%d)\n",
  89. __func__, name, rc);
  90. goto done;
  91. }
  92. }
  93. done:
  94. return rc;
  95. }
  96. static int msm_cdc_check_supply_param(struct device *dev,
  97. struct cdc_regulator *cdc_vreg,
  98. int num_supplies)
  99. {
  100. if (!dev) {
  101. pr_err("%s: device is NULL\n", __func__);
  102. return -ENODEV;
  103. }
  104. if (!cdc_vreg || (num_supplies <= 0)) {
  105. dev_err(dev, "%s: supply check failed: vreg: %pK, num_supplies: %d\n",
  106. __func__, cdc_vreg, num_supplies);
  107. return -EINVAL;
  108. }
  109. return 0;
  110. }
  111. /*
  112. * msm_cdc_disable_ondemand_supply:
  113. * Disable codec ondemand supply
  114. *
  115. * @dev: pointer to codec device
  116. * @supplies: pointer to regulator bulk data
  117. * @cdc_vreg: pointer to platform regulator data
  118. * @num_supplies: number of supplies
  119. * @supply_name: Ondemand supply name to be enabled
  120. *
  121. * Return error code if supply disable is failed
  122. */
  123. int msm_cdc_disable_ondemand_supply(struct device *dev,
  124. struct regulator_bulk_data *supplies,
  125. struct cdc_regulator *cdc_vreg,
  126. int num_supplies,
  127. char *supply_name)
  128. {
  129. int rc, i;
  130. if ((!supply_name) || (!supplies)) {
  131. pr_err("%s: either dev or supplies or cdc_vreg is NULL\n",
  132. __func__);
  133. return -EINVAL;
  134. }
  135. /* input parameter validation */
  136. rc = msm_cdc_check_supply_param(dev, cdc_vreg, num_supplies);
  137. if (rc)
  138. return rc;
  139. for (i = 0; i < num_supplies; i++) {
  140. if (cdc_vreg[i].ondemand &&
  141. !strcmp(cdc_vreg[i].name, supply_name)) {
  142. rc = regulator_disable(supplies[i].consumer);
  143. if (rc)
  144. dev_err(dev, "%s: failed to disable supply %s, err:%d\n",
  145. __func__, supplies[i].supply, rc);
  146. break;
  147. }
  148. }
  149. if (i == num_supplies) {
  150. dev_err(dev, "%s: not able to find supply %s\n",
  151. __func__, supply_name);
  152. rc = -EINVAL;
  153. }
  154. return rc;
  155. }
  156. EXPORT_SYMBOL(msm_cdc_disable_ondemand_supply);
  157. /*
  158. * msm_cdc_enable_ondemand_supply:
  159. * Enable codec ondemand supply
  160. *
  161. * @dev: pointer to codec device
  162. * @supplies: pointer to regulator bulk data
  163. * @cdc_vreg: pointer to platform regulator data
  164. * @num_supplies: number of supplies
  165. * @supply_name: Ondemand supply name to be enabled
  166. *
  167. * Return error code if supply enable is failed
  168. */
  169. int msm_cdc_enable_ondemand_supply(struct device *dev,
  170. struct regulator_bulk_data *supplies,
  171. struct cdc_regulator *cdc_vreg,
  172. int num_supplies,
  173. char *supply_name)
  174. {
  175. int rc, i;
  176. if ((!supply_name) || (!supplies)) {
  177. pr_err("%s: either dev or supplies or cdc_vreg is NULL\n",
  178. __func__);
  179. return -EINVAL;
  180. }
  181. /* input parameter validation */
  182. rc = msm_cdc_check_supply_param(dev, cdc_vreg, num_supplies);
  183. if (rc)
  184. return rc;
  185. for (i = 0; i < num_supplies; i++) {
  186. if (cdc_vreg[i].ondemand &&
  187. !strcmp(cdc_vreg[i].name, supply_name)) {
  188. rc = regulator_enable(supplies[i].consumer);
  189. if (rc)
  190. dev_err(dev, "%s: failed to enable supply %s, rc: %d\n",
  191. __func__, supplies[i].supply, rc);
  192. break;
  193. }
  194. }
  195. if (i == num_supplies) {
  196. dev_err(dev, "%s: not able to find supply %s\n",
  197. __func__, supply_name);
  198. rc = -EINVAL;
  199. }
  200. return rc;
  201. }
  202. EXPORT_SYMBOL(msm_cdc_enable_ondemand_supply);
  203. /*
  204. * msm_cdc_disable_static_supplies:
  205. * Disable codec static supplies
  206. *
  207. * @dev: pointer to codec device
  208. * @supplies: pointer to regulator bulk data
  209. * @cdc_vreg: pointer to platform regulator data
  210. * @num_supplies: number of supplies
  211. *
  212. * Return error code if supply disable is failed
  213. */
  214. int msm_cdc_disable_static_supplies(struct device *dev,
  215. struct regulator_bulk_data *supplies,
  216. struct cdc_regulator *cdc_vreg,
  217. int num_supplies)
  218. {
  219. int rc, i;
  220. if ((!dev) || (!supplies) || (!cdc_vreg)) {
  221. pr_err("%s: either dev or supplies or cdc_vreg is NULL\n",
  222. __func__);
  223. return -EINVAL;
  224. }
  225. /* input parameter validation */
  226. rc = msm_cdc_check_supply_param(dev, cdc_vreg, num_supplies);
  227. if (rc)
  228. return rc;
  229. for (i = 0; i < num_supplies; i++) {
  230. if (cdc_vreg[i].ondemand)
  231. continue;
  232. rc = regulator_disable(supplies[i].consumer);
  233. if (rc)
  234. dev_err(dev, "%s: failed to disable supply %s, err:%d\n",
  235. __func__, supplies[i].supply, rc);
  236. else
  237. dev_dbg(dev, "%s: disabled regulator %s\n",
  238. __func__, supplies[i].supply);
  239. }
  240. return rc;
  241. }
  242. EXPORT_SYMBOL(msm_cdc_disable_static_supplies);
  243. /*
  244. * msm_cdc_release_supplies:
  245. * Release codec power supplies
  246. *
  247. * @dev: pointer to codec device
  248. * @supplies: pointer to regulator bulk data
  249. * @cdc_vreg: pointer to platform regulator data
  250. * @num_supplies: number of supplies
  251. *
  252. * Return error code if supply disable is failed
  253. */
  254. int msm_cdc_release_supplies(struct device *dev,
  255. struct regulator_bulk_data *supplies,
  256. struct cdc_regulator *cdc_vreg,
  257. int num_supplies)
  258. {
  259. int rc = 0;
  260. int i;
  261. if ((!dev) || (!supplies) || (!cdc_vreg)) {
  262. pr_err("%s: either dev or supplies or cdc_vreg is NULL\n",
  263. __func__);
  264. return -EINVAL;
  265. }
  266. /* input parameter validation */
  267. rc = msm_cdc_check_supply_param(dev, cdc_vreg, num_supplies);
  268. if (rc)
  269. return rc;
  270. msm_cdc_disable_static_supplies(dev, supplies, cdc_vreg,
  271. num_supplies);
  272. for (i = 0; i < num_supplies; i++) {
  273. if (regulator_count_voltages(supplies[i].consumer) < 0)
  274. continue;
  275. regulator_set_voltage(supplies[i].consumer, 0,
  276. cdc_vreg[i].max_uV);
  277. regulator_set_load(supplies[i].consumer, 0);
  278. }
  279. return rc;
  280. }
  281. EXPORT_SYMBOL(msm_cdc_release_supplies);
  282. /*
  283. * msm_cdc_enable_static_supplies:
  284. * Enable codec static supplies
  285. *
  286. * @dev: pointer to codec device
  287. * @supplies: pointer to regulator bulk data
  288. * @cdc_vreg: pointer to platform regulator data
  289. * @num_supplies: number of supplies
  290. *
  291. * Return error code if supply enable is failed
  292. */
  293. int msm_cdc_enable_static_supplies(struct device *dev,
  294. struct regulator_bulk_data *supplies,
  295. struct cdc_regulator *cdc_vreg,
  296. int num_supplies)
  297. {
  298. int rc, i;
  299. if ((!dev) || (!supplies) || (!cdc_vreg)) {
  300. pr_err("%s: either dev or supplies or cdc_vreg is NULL\n",
  301. __func__);
  302. return -EINVAL;
  303. }
  304. /* input parameter validation */
  305. rc = msm_cdc_check_supply_param(dev, cdc_vreg, num_supplies);
  306. if (rc)
  307. return rc;
  308. for (i = 0; i < num_supplies; i++) {
  309. if (cdc_vreg[i].ondemand)
  310. continue;
  311. rc = regulator_enable(supplies[i].consumer);
  312. if (rc) {
  313. dev_err(dev, "%s: failed to enable supply %s, rc: %d\n",
  314. __func__, supplies[i].supply, rc);
  315. break;
  316. }
  317. }
  318. while (rc && i--)
  319. if (!cdc_vreg[i].ondemand)
  320. regulator_disable(supplies[i].consumer);
  321. return rc;
  322. }
  323. EXPORT_SYMBOL(msm_cdc_enable_static_supplies);
  324. /*
  325. * msm_cdc_init_supplies:
  326. * Initialize codec static supplies with regulator get
  327. *
  328. * @dev: pointer to codec device
  329. * @supplies: pointer to regulator bulk data
  330. * @cdc_vreg: pointer to platform regulator data
  331. * @num_supplies: number of supplies
  332. *
  333. * Return error code if supply init is failed
  334. */
  335. int msm_cdc_init_supplies(struct device *dev,
  336. struct regulator_bulk_data **supplies,
  337. struct cdc_regulator *cdc_vreg,
  338. int num_supplies)
  339. {
  340. struct regulator_bulk_data *vsup;
  341. int rc;
  342. int i;
  343. if (!dev || !cdc_vreg) {
  344. pr_err("%s: device pointer or dce_vreg is NULL\n",
  345. __func__);
  346. return -EINVAL;
  347. }
  348. /* input parameter validation */
  349. rc = msm_cdc_check_supply_param(dev, cdc_vreg, num_supplies);
  350. if (rc)
  351. return rc;
  352. vsup = devm_kcalloc(dev, num_supplies,
  353. sizeof(struct regulator_bulk_data),
  354. GFP_KERNEL);
  355. if (!vsup)
  356. return -ENOMEM;
  357. for (i = 0; i < num_supplies; i++) {
  358. if (!cdc_vreg[i].name) {
  359. dev_err(dev, "%s: supply name not defined\n",
  360. __func__);
  361. rc = -EINVAL;
  362. goto err_supply;
  363. }
  364. vsup[i].supply = cdc_vreg[i].name;
  365. }
  366. rc = devm_regulator_bulk_get(dev, num_supplies, vsup);
  367. if (rc) {
  368. dev_err(dev, "%s: failed to get supplies (%d)\n",
  369. __func__, rc);
  370. goto err_supply;
  371. }
  372. /* Set voltage and current on regulators */
  373. for (i = 0; i < num_supplies; i++) {
  374. if (regulator_count_voltages(vsup[i].consumer) < 0)
  375. continue;
  376. rc = regulator_set_voltage(vsup[i].consumer,
  377. cdc_vreg[i].min_uV,
  378. cdc_vreg[i].max_uV);
  379. if (rc) {
  380. dev_err(dev, "%s: set regulator voltage failed for %s, err:%d\n",
  381. __func__, vsup[i].supply, rc);
  382. goto err_supply;
  383. }
  384. rc = regulator_set_load(vsup[i].consumer,
  385. cdc_vreg[i].optimum_uA);
  386. if (rc < 0) {
  387. dev_err(dev, "%s: set regulator optimum mode failed for %s, err:%d\n",
  388. __func__, vsup[i].supply, rc);
  389. goto err_supply;
  390. }
  391. }
  392. *supplies = vsup;
  393. return 0;
  394. err_supply:
  395. return rc;
  396. }
  397. EXPORT_SYMBOL(msm_cdc_init_supplies);
  398. /*
  399. * msm_cdc_get_power_supplies:
  400. * Get codec power supplies from device tree.
  401. * Allocate memory to hold regulator data for
  402. * all power supplies.
  403. *
  404. * @dev: pointer to codec device
  405. * @cdc_vreg: pointer to codec regulator
  406. * @total_num_supplies: total number of supplies read from DT
  407. *
  408. * Return error code if supply disable is failed
  409. */
  410. int msm_cdc_get_power_supplies(struct device *dev,
  411. struct cdc_regulator **cdc_vreg,
  412. int *total_num_supplies)
  413. {
  414. const char *static_prop_name = "qcom,cdc-static-supplies";
  415. const char *ond_prop_name = "qcom,cdc-on-demand-supplies";
  416. const char *cp_prop_name = "qcom,cdc-cp-supplies";
  417. int static_sup_cnt = 0;
  418. int ond_sup_cnt = 0;
  419. int cp_sup_cnt = 0;
  420. int num_supplies = 0;
  421. struct cdc_regulator *cdc_reg;
  422. int rc;
  423. if (!dev) {
  424. pr_err("%s: device pointer is NULL\n", __func__);
  425. return -EINVAL;
  426. }
  427. static_sup_cnt = of_property_count_strings(dev->of_node,
  428. static_prop_name);
  429. if (static_sup_cnt < 0) {
  430. dev_err(dev, "%s: Failed to get static supplies(%d)\n",
  431. __func__, static_sup_cnt);
  432. rc = static_sup_cnt;
  433. goto err_supply_cnt;
  434. }
  435. ond_sup_cnt = of_property_count_strings(dev->of_node, ond_prop_name);
  436. if (ond_sup_cnt < 0)
  437. ond_sup_cnt = 0;
  438. cp_sup_cnt = of_property_count_strings(dev->of_node,
  439. cp_prop_name);
  440. if (cp_sup_cnt < 0)
  441. cp_sup_cnt = 0;
  442. num_supplies = static_sup_cnt + ond_sup_cnt + cp_sup_cnt;
  443. if (num_supplies <= 0) {
  444. dev_err(dev, "%s: supply count is 0 or negative\n", __func__);
  445. rc = -EINVAL;
  446. goto err_supply_cnt;
  447. }
  448. cdc_reg = devm_kcalloc(dev, num_supplies,
  449. sizeof(struct cdc_regulator),
  450. GFP_KERNEL);
  451. if (!cdc_reg) {
  452. rc = -ENOMEM;
  453. goto err_mem_alloc;
  454. }
  455. rc = msm_cdc_parse_supplies(dev, cdc_reg, static_prop_name,
  456. static_sup_cnt, false);
  457. if (rc) {
  458. dev_err(dev, "%s: failed to parse static supplies(%d)\n",
  459. __func__, rc);
  460. goto err_sup;
  461. }
  462. rc = msm_cdc_parse_supplies(dev, &cdc_reg[static_sup_cnt],
  463. ond_prop_name, ond_sup_cnt,
  464. true);
  465. if (rc) {
  466. dev_err(dev, "%s: failed to parse demand supplies(%d)\n",
  467. __func__, rc);
  468. goto err_sup;
  469. }
  470. rc = msm_cdc_parse_supplies(dev,
  471. &cdc_reg[static_sup_cnt + ond_sup_cnt],
  472. cp_prop_name, cp_sup_cnt, true);
  473. if (rc) {
  474. dev_err(dev, "%s: failed to parse cp supplies(%d)\n",
  475. __func__, rc);
  476. goto err_sup;
  477. }
  478. *cdc_vreg = cdc_reg;
  479. *total_num_supplies = num_supplies;
  480. return 0;
  481. err_sup:
  482. err_supply_cnt:
  483. err_mem_alloc:
  484. return rc;
  485. }
  486. EXPORT_SYMBOL(msm_cdc_get_power_supplies);