msm-cdc-supply.c 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556
  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. devm_regulator_put(supplies[i].consumer);
  279. supplies[i].consumer = NULL;
  280. }
  281. devm_kfree(dev, supplies);
  282. return rc;
  283. }
  284. EXPORT_SYMBOL(msm_cdc_release_supplies);
  285. /*
  286. * msm_cdc_enable_static_supplies:
  287. * Enable codec static supplies
  288. *
  289. * @dev: pointer to codec device
  290. * @supplies: pointer to regulator bulk data
  291. * @cdc_vreg: pointer to platform regulator data
  292. * @num_supplies: number of supplies
  293. *
  294. * Return error code if supply enable is failed
  295. */
  296. int msm_cdc_enable_static_supplies(struct device *dev,
  297. struct regulator_bulk_data *supplies,
  298. struct cdc_regulator *cdc_vreg,
  299. int num_supplies)
  300. {
  301. int rc, i;
  302. if ((!dev) || (!supplies) || (!cdc_vreg)) {
  303. pr_err("%s: either dev or supplies or cdc_vreg is NULL\n",
  304. __func__);
  305. return -EINVAL;
  306. }
  307. /* input parameter validation */
  308. rc = msm_cdc_check_supply_param(dev, cdc_vreg, num_supplies);
  309. if (rc)
  310. return rc;
  311. for (i = 0; i < num_supplies; i++) {
  312. if (cdc_vreg[i].ondemand)
  313. continue;
  314. rc = regulator_enable(supplies[i].consumer);
  315. if (rc) {
  316. dev_err(dev, "%s: failed to enable supply %s, rc: %d\n",
  317. __func__, supplies[i].supply, rc);
  318. break;
  319. }
  320. }
  321. while (rc && i--)
  322. if (!cdc_vreg[i].ondemand)
  323. regulator_disable(supplies[i].consumer);
  324. return rc;
  325. }
  326. EXPORT_SYMBOL(msm_cdc_enable_static_supplies);
  327. /*
  328. * msm_cdc_init_supplies:
  329. * Initialize codec static supplies with regulator get
  330. *
  331. * @dev: pointer to codec device
  332. * @supplies: pointer to regulator bulk data
  333. * @cdc_vreg: pointer to platform regulator data
  334. * @num_supplies: number of supplies
  335. *
  336. * Return error code if supply init is failed
  337. */
  338. int msm_cdc_init_supplies(struct device *dev,
  339. struct regulator_bulk_data **supplies,
  340. struct cdc_regulator *cdc_vreg,
  341. int num_supplies)
  342. {
  343. struct regulator_bulk_data *vsup;
  344. int rc;
  345. int i;
  346. if (!dev || !cdc_vreg) {
  347. pr_err("%s: device pointer or dce_vreg is NULL\n",
  348. __func__);
  349. return -EINVAL;
  350. }
  351. /* input parameter validation */
  352. rc = msm_cdc_check_supply_param(dev, cdc_vreg, num_supplies);
  353. if (rc)
  354. return rc;
  355. vsup = devm_kcalloc(dev, num_supplies,
  356. sizeof(struct regulator_bulk_data),
  357. GFP_KERNEL);
  358. if (!vsup)
  359. return -ENOMEM;
  360. for (i = 0; i < num_supplies; i++) {
  361. if (!cdc_vreg[i].name) {
  362. dev_err(dev, "%s: supply name not defined\n",
  363. __func__);
  364. rc = -EINVAL;
  365. goto err_supply;
  366. }
  367. vsup[i].supply = cdc_vreg[i].name;
  368. }
  369. rc = devm_regulator_bulk_get(dev, num_supplies, vsup);
  370. if (rc) {
  371. dev_err(dev, "%s: failed to get supplies (%d)\n",
  372. __func__, rc);
  373. goto err_supply;
  374. }
  375. /* Set voltage and current on regulators */
  376. for (i = 0; i < num_supplies; i++) {
  377. if (regulator_count_voltages(vsup[i].consumer) < 0)
  378. continue;
  379. rc = regulator_set_voltage(vsup[i].consumer,
  380. cdc_vreg[i].min_uV,
  381. cdc_vreg[i].max_uV);
  382. if (rc) {
  383. dev_err(dev, "%s: set regulator voltage failed for %s, err:%d\n",
  384. __func__, vsup[i].supply, rc);
  385. goto err_set_supply;
  386. }
  387. rc = regulator_set_load(vsup[i].consumer,
  388. cdc_vreg[i].optimum_uA);
  389. if (rc < 0) {
  390. dev_err(dev, "%s: set regulator optimum mode failed for %s, err:%d\n",
  391. __func__, vsup[i].supply, rc);
  392. goto err_set_supply;
  393. }
  394. }
  395. *supplies = vsup;
  396. return 0;
  397. err_set_supply:
  398. for (i = 0; i < num_supplies; i++)
  399. devm_regulator_put(vsup[i].consumer);
  400. err_supply:
  401. devm_kfree(dev, vsup);
  402. return rc;
  403. }
  404. EXPORT_SYMBOL(msm_cdc_init_supplies);
  405. /*
  406. * msm_cdc_get_power_supplies:
  407. * Get codec power supplies from device tree.
  408. * Allocate memory to hold regulator data for
  409. * all power supplies.
  410. *
  411. * @dev: pointer to codec device
  412. * @cdc_vreg: pointer to codec regulator
  413. * @total_num_supplies: total number of supplies read from DT
  414. *
  415. * Return error code if supply disable is failed
  416. */
  417. int msm_cdc_get_power_supplies(struct device *dev,
  418. struct cdc_regulator **cdc_vreg,
  419. int *total_num_supplies)
  420. {
  421. const char *static_prop_name = "qcom,cdc-static-supplies";
  422. const char *ond_prop_name = "qcom,cdc-on-demand-supplies";
  423. const char *cp_prop_name = "qcom,cdc-cp-supplies";
  424. int static_sup_cnt = 0;
  425. int ond_sup_cnt = 0;
  426. int cp_sup_cnt = 0;
  427. int num_supplies = 0;
  428. struct cdc_regulator *cdc_reg;
  429. int rc;
  430. if (!dev) {
  431. pr_err("%s: device pointer is NULL\n", __func__);
  432. return -EINVAL;
  433. }
  434. static_sup_cnt = of_property_count_strings(dev->of_node,
  435. static_prop_name);
  436. if (static_sup_cnt < 0) {
  437. dev_err(dev, "%s: Failed to get static supplies(%d)\n",
  438. __func__, static_sup_cnt);
  439. rc = static_sup_cnt;
  440. goto err_supply_cnt;
  441. }
  442. ond_sup_cnt = of_property_count_strings(dev->of_node, ond_prop_name);
  443. if (ond_sup_cnt < 0)
  444. ond_sup_cnt = 0;
  445. cp_sup_cnt = of_property_count_strings(dev->of_node,
  446. cp_prop_name);
  447. if (cp_sup_cnt < 0)
  448. cp_sup_cnt = 0;
  449. num_supplies = static_sup_cnt + ond_sup_cnt + cp_sup_cnt;
  450. if (num_supplies <= 0) {
  451. dev_err(dev, "%s: supply count is 0 or negative\n", __func__);
  452. rc = -EINVAL;
  453. goto err_supply_cnt;
  454. }
  455. cdc_reg = devm_kcalloc(dev, num_supplies,
  456. sizeof(struct cdc_regulator),
  457. GFP_KERNEL);
  458. if (!cdc_reg) {
  459. rc = -ENOMEM;
  460. goto err_mem_alloc;
  461. }
  462. rc = msm_cdc_parse_supplies(dev, cdc_reg, static_prop_name,
  463. static_sup_cnt, false);
  464. if (rc) {
  465. dev_err(dev, "%s: failed to parse static supplies(%d)\n",
  466. __func__, rc);
  467. goto err_sup;
  468. }
  469. rc = msm_cdc_parse_supplies(dev, &cdc_reg[static_sup_cnt],
  470. ond_prop_name, ond_sup_cnt,
  471. true);
  472. if (rc) {
  473. dev_err(dev, "%s: failed to parse demand supplies(%d)\n",
  474. __func__, rc);
  475. goto err_sup;
  476. }
  477. rc = msm_cdc_parse_supplies(dev,
  478. &cdc_reg[static_sup_cnt + ond_sup_cnt],
  479. cp_prop_name, cp_sup_cnt, true);
  480. if (rc) {
  481. dev_err(dev, "%s: failed to parse cp supplies(%d)\n",
  482. __func__, rc);
  483. goto err_sup;
  484. }
  485. *cdc_vreg = cdc_reg;
  486. *total_num_supplies = num_supplies;
  487. return 0;
  488. err_sup:
  489. devm_kfree(dev, cdc_reg);
  490. err_supply_cnt:
  491. err_mem_alloc:
  492. return rc;
  493. }
  494. EXPORT_SYMBOL(msm_cdc_get_power_supplies);