Linux Audio

Check our new training course

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