qcom-spmi-pmic.c 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * Copyright (c) 2014-2015, 2017-2020, The Linux Foundation.
  4. * All rights reserved.
  5. * Copyright (c) 2022 Qualcomm Innovation Center, Inc. All rights reserved.
  6. */
  7. #include <linux/device.h>
  8. #include <linux/errno.h>
  9. #include <linux/gfp.h>
  10. #include <linux/kernel.h>
  11. #include <linux/module.h>
  12. #include <linux/spmi.h>
  13. #include <linux/types.h>
  14. #include <linux/regmap.h>
  15. #include <linux/of_platform.h>
  16. #include <linux/qti-regmap-debugfs.h>
  17. #include <soc/qcom/qcom-spmi-pmic.h>
  18. #define PMIC_REV2 0x101
  19. #define PMIC_REV3 0x102
  20. #define PMIC_REV4 0x103
  21. #define PMIC_TYPE 0x104
  22. #define PMIC_SUBTYPE 0x105
  23. #define PMIC_FAB_ID 0x1f2
  24. #define PMIC_TYPE_VALUE 0x51
  25. #define PMIC_REV4_V2 0x02
  26. struct qcom_spmi_dev {
  27. int num_usids;
  28. struct qcom_spmi_pmic pmic;
  29. };
  30. static DEFINE_MUTEX(pmic_spmi_revid_lock);
  31. #define N_USIDS(n) ((void *)n)
  32. static const struct of_device_id pmic_spmi_id_table[] = {
  33. { .compatible = "qcom,pm660", .data = N_USIDS(2) },
  34. { .compatible = "qcom,pm660l", .data = N_USIDS(2) },
  35. { .compatible = "qcom,pm8004", .data = N_USIDS(2) },
  36. { .compatible = "qcom,pm8005", .data = N_USIDS(2) },
  37. { .compatible = "qcom,pm8019", .data = N_USIDS(2) },
  38. { .compatible = "qcom,pm8028", .data = N_USIDS(2) },
  39. { .compatible = "qcom,pm8110", .data = N_USIDS(2) },
  40. { .compatible = "qcom,pm8150", .data = N_USIDS(2) },
  41. { .compatible = "qcom,pm8150b", .data = N_USIDS(2) },
  42. { .compatible = "qcom,pm8150c", .data = N_USIDS(2) },
  43. { .compatible = "qcom,pm8150l", .data = N_USIDS(2) },
  44. { .compatible = "qcom,pm8226", .data = N_USIDS(2) },
  45. { .compatible = "qcom,pm8841", .data = N_USIDS(2) },
  46. { .compatible = "qcom,pm8901", .data = N_USIDS(2) },
  47. { .compatible = "qcom,pm8909", .data = N_USIDS(2) },
  48. { .compatible = "qcom,pm8916", .data = N_USIDS(2) },
  49. { .compatible = "qcom,pm8941", .data = N_USIDS(2) },
  50. { .compatible = "qcom,pm8950", .data = N_USIDS(2) },
  51. { .compatible = "qcom,pm8994", .data = N_USIDS(2) },
  52. { .compatible = "qcom,pm8998", .data = N_USIDS(2) },
  53. { .compatible = "qcom,pma8084", .data = N_USIDS(2) },
  54. { .compatible = "qcom,pmd9635", .data = N_USIDS(2) },
  55. { .compatible = "qcom,pmi8950", .data = N_USIDS(2) },
  56. { .compatible = "qcom,pmi8962", .data = N_USIDS(2) },
  57. { .compatible = "qcom,pmi8994", .data = N_USIDS(2) },
  58. { .compatible = "qcom,pmi8998", .data = N_USIDS(2) },
  59. { .compatible = "qcom,pmk8002", .data = N_USIDS(2) },
  60. { .compatible = "qcom,pmp8074", .data = N_USIDS(2) },
  61. { .compatible = "qcom,smb2351", .data = N_USIDS(2) },
  62. { .compatible = "qcom,spmi-pmic", .data = N_USIDS(1) },
  63. { }
  64. };
  65. /*
  66. * A PMIC can be represented by multiple SPMI devices, but
  67. * only the base PMIC device will contain a reference to
  68. * the revision information.
  69. *
  70. * This function takes a pointer to a pmic device and
  71. * returns a pointer to the base PMIC device.
  72. *
  73. * This only supports PMICs with 1 or 2 USIDs.
  74. */
  75. static struct spmi_device *qcom_pmic_get_base_usid(struct spmi_device *sdev, struct qcom_spmi_dev *ctx)
  76. {
  77. struct device_node *spmi_bus;
  78. struct device_node *child;
  79. int function_parent_usid, ret;
  80. u32 pmic_addr;
  81. /*
  82. * Quick return if the function device is already in the base
  83. * USID. This will always be hit for PMICs with only 1 USID.
  84. */
  85. if (sdev->usid % ctx->num_usids == 0) {
  86. get_device(&sdev->dev);
  87. return sdev;
  88. }
  89. function_parent_usid = sdev->usid;
  90. /*
  91. * Walk through the list of PMICs until we find the sibling USID.
  92. * The goal is to find the first USID which is less than the
  93. * number of USIDs in the PMIC array, e.g. for a PMIC with 2 USIDs
  94. * where the function device is under USID 3, we want to find the
  95. * device for USID 2.
  96. */
  97. spmi_bus = of_get_parent(sdev->dev.of_node);
  98. sdev = ERR_PTR(-ENODATA);
  99. for_each_child_of_node(spmi_bus, child) {
  100. ret = of_property_read_u32_index(child, "reg", 0, &pmic_addr);
  101. if (ret) {
  102. of_node_put(child);
  103. sdev = ERR_PTR(ret);
  104. break;
  105. }
  106. if (pmic_addr == function_parent_usid - (ctx->num_usids - 1)) {
  107. sdev = spmi_device_from_of(child);
  108. if (!sdev) {
  109. /*
  110. * If the base USID for this PMIC hasn't been
  111. * registered yet then we need to defer.
  112. */
  113. sdev = ERR_PTR(-EPROBE_DEFER);
  114. }
  115. of_node_put(child);
  116. break;
  117. }
  118. }
  119. of_node_put(spmi_bus);
  120. return sdev;
  121. }
  122. static int pmic_spmi_get_base_revid(struct spmi_device *sdev, struct qcom_spmi_dev *ctx)
  123. {
  124. struct qcom_spmi_dev *base_ctx;
  125. struct spmi_device *base;
  126. int ret = 0;
  127. base = qcom_pmic_get_base_usid(sdev, ctx);
  128. if (IS_ERR(base))
  129. return PTR_ERR(base);
  130. /*
  131. * Copy revid info from base device if it has probed and is still
  132. * bound to its driver.
  133. */
  134. mutex_lock(&pmic_spmi_revid_lock);
  135. base_ctx = spmi_device_get_drvdata(base);
  136. if (!base_ctx) {
  137. ret = -EPROBE_DEFER;
  138. goto out_unlock;
  139. }
  140. memcpy(&ctx->pmic, &base_ctx->pmic, sizeof(ctx->pmic));
  141. out_unlock:
  142. mutex_unlock(&pmic_spmi_revid_lock);
  143. put_device(&base->dev);
  144. return ret;
  145. }
  146. static int pmic_spmi_load_revid(struct regmap *map, struct device *dev,
  147. struct qcom_spmi_pmic *pmic)
  148. {
  149. int ret;
  150. ret = regmap_read(map, PMIC_TYPE, &pmic->type);
  151. if (ret < 0)
  152. return ret;
  153. if (pmic->type != PMIC_TYPE_VALUE)
  154. return ret;
  155. ret = regmap_read(map, PMIC_SUBTYPE, &pmic->subtype);
  156. if (ret < 0)
  157. return ret;
  158. pmic->name = of_match_device(pmic_spmi_id_table, dev)->compatible;
  159. ret = regmap_read(map, PMIC_REV2, &pmic->rev2);
  160. if (ret < 0)
  161. return ret;
  162. ret = regmap_read(map, PMIC_REV3, &pmic->minor);
  163. if (ret < 0)
  164. return ret;
  165. ret = regmap_read(map, PMIC_REV4, &pmic->major);
  166. if (ret < 0)
  167. return ret;
  168. if (pmic->subtype == PMI8998_SUBTYPE || pmic->subtype == PM660_SUBTYPE) {
  169. ret = regmap_read(map, PMIC_FAB_ID, &pmic->fab_id);
  170. if (ret < 0)
  171. return ret;
  172. }
  173. /*
  174. * In early versions of PM8941 and PM8226, the major revision number
  175. * started incrementing from 0 (eg 0 = v1.0, 1 = v2.0).
  176. * Increment the major revision number here if the chip is an early
  177. * version of PM8941 or PM8226.
  178. */
  179. if ((pmic->subtype == PM8941_SUBTYPE || pmic->subtype == PM8226_SUBTYPE) &&
  180. pmic->major < PMIC_REV4_V2)
  181. pmic->major++;
  182. if (pmic->subtype == PM8110_SUBTYPE)
  183. pmic->minor = pmic->rev2;
  184. dev_dbg(dev, "%x: %s v%d.%d\n",
  185. pmic->subtype, pmic->name, pmic->major, pmic->minor);
  186. return 0;
  187. }
  188. /**
  189. * qcom_pmic_get() - Get a pointer to the base PMIC device
  190. *
  191. * This function takes a struct device for a driver which is a child of a PMIC.
  192. * And locates the PMIC revision information for it.
  193. *
  194. * @dev: the pmic function device
  195. * @return: the struct qcom_spmi_pmic* pointer associated with the function device
  196. */
  197. const struct qcom_spmi_pmic *qcom_pmic_get(struct device *dev)
  198. {
  199. struct spmi_device *sdev;
  200. struct qcom_spmi_dev *spmi;
  201. /*
  202. * Make sure the device is actually a child of a PMIC
  203. */
  204. if (!of_match_device(pmic_spmi_id_table, dev->parent))
  205. return ERR_PTR(-EINVAL);
  206. sdev = to_spmi_device(dev->parent);
  207. spmi = dev_get_drvdata(&sdev->dev);
  208. return &spmi->pmic;
  209. }
  210. EXPORT_SYMBOL(qcom_pmic_get);
  211. static const struct regmap_config spmi_regmap_config = {
  212. .reg_bits = 16,
  213. .val_bits = 8,
  214. .max_register = 0xffff,
  215. .fast_io = true,
  216. };
  217. static const struct regmap_config spmi_regmap_can_sleep_config = {
  218. .reg_bits = 16,
  219. .val_bits = 8,
  220. .max_register = 0xffff,
  221. .fast_io = false,
  222. };
  223. static int pmic_spmi_probe(struct spmi_device *sdev)
  224. {
  225. struct device_node *root = sdev->dev.of_node;
  226. struct regmap *regmap;
  227. struct qcom_spmi_dev *ctx;
  228. int ret;
  229. if (of_property_read_bool(root, "qcom,can-sleep"))
  230. regmap = devm_regmap_init_spmi_ext(sdev,
  231. &spmi_regmap_can_sleep_config);
  232. else
  233. regmap = devm_regmap_init_spmi_ext(sdev, &spmi_regmap_config);
  234. if (IS_ERR(regmap))
  235. return PTR_ERR(regmap);
  236. devm_regmap_qti_debugfs_register(&sdev->dev, regmap);
  237. ctx = devm_kzalloc(&sdev->dev, sizeof(*ctx), GFP_KERNEL);
  238. if (!ctx)
  239. return -ENOMEM;
  240. ctx->num_usids = (uintptr_t)of_device_get_match_data(&sdev->dev);
  241. /* Only the first slave id for a PMIC contains this information */
  242. if (sdev->usid % ctx->num_usids == 0) {
  243. ret = pmic_spmi_load_revid(regmap, &sdev->dev, &ctx->pmic);
  244. if (ret < 0)
  245. return ret;
  246. } else {
  247. ret = pmic_spmi_get_base_revid(sdev, ctx);
  248. if (ret)
  249. return ret;
  250. }
  251. mutex_lock(&pmic_spmi_revid_lock);
  252. spmi_device_set_drvdata(sdev, ctx);
  253. mutex_unlock(&pmic_spmi_revid_lock);
  254. return devm_of_platform_populate(&sdev->dev);
  255. }
  256. static void pmic_spmi_remove(struct spmi_device *sdev)
  257. {
  258. mutex_lock(&pmic_spmi_revid_lock);
  259. spmi_device_set_drvdata(sdev, NULL);
  260. mutex_unlock(&pmic_spmi_revid_lock);
  261. }
  262. MODULE_DEVICE_TABLE(of, pmic_spmi_id_table);
  263. static struct spmi_driver pmic_spmi_driver = {
  264. .probe = pmic_spmi_probe,
  265. .remove = pmic_spmi_remove,
  266. .driver = {
  267. .name = "pmic-spmi",
  268. .of_match_table = pmic_spmi_id_table,
  269. },
  270. };
  271. static int __init pmic_spmi_init(void)
  272. {
  273. return spmi_driver_register(&pmic_spmi_driver);
  274. }
  275. arch_initcall(pmic_spmi_init);
  276. static void __exit pmic_spmi_exit(void)
  277. {
  278. spmi_driver_unregister(&pmic_spmi_driver);
  279. }
  280. module_exit(pmic_spmi_exit);
  281. MODULE_DESCRIPTION("Qualcomm SPMI PMIC driver");
  282. MODULE_ALIAS("spmi:spmi-pmic");
  283. MODULE_LICENSE("GPL v2");
  284. MODULE_AUTHOR("Josh Cartwright <[email protected]>");
  285. MODULE_AUTHOR("Stanimir Varbanov <[email protected]>");