aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTero Kristo <t-kristo@ti.com>2016-08-10 08:23:54 -0400
committerMark Brown <broonie@kernel.org>2016-08-10 13:21:55 -0400
commitf11fa1796a4b4f8c6d4ced37e8824276ec57057d (patch)
tree9a16e75129af2075584a071818375c6fe90574c8
parent29b4817d4018df78086157ea3a55c1d9424a7cfc (diff)
mfd: tps65218: add version check to the PMIC probe
Version information will be needed to handle some error cases under the regulator driver, so store the information once during MFD probe. Signed-off-by: Tero Kristo <t-kristo@ti.com> Signed-off-by: Dave Gerlach <d-gerlach@ti.com> Signed-off-by: Keerthy <j-keerthy@ti.com> Acked-by: Lee Jones <lee.jones@linaro.org> Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r--drivers/mfd/tps65218.c9
-rw-r--r--include/linux/mfd/tps65218.h1
2 files changed, 10 insertions, 0 deletions
diff --git a/drivers/mfd/tps65218.c b/drivers/mfd/tps65218.c
index 80b9dc363cd8..ba610adbdbff 100644
--- a/drivers/mfd/tps65218.c
+++ b/drivers/mfd/tps65218.c
@@ -219,6 +219,7 @@ static int tps65218_probe(struct i2c_client *client,
219 struct tps65218 *tps; 219 struct tps65218 *tps;
220 const struct of_device_id *match; 220 const struct of_device_id *match;
221 int ret; 221 int ret;
222 unsigned int chipid;
222 223
223 match = of_match_device(of_tps65218_match_table, &client->dev); 224 match = of_match_device(of_tps65218_match_table, &client->dev);
224 if (!match) { 225 if (!match) {
@@ -250,6 +251,14 @@ static int tps65218_probe(struct i2c_client *client,
250 if (ret < 0) 251 if (ret < 0)
251 return ret; 252 return ret;
252 253
254 ret = tps65218_reg_read(tps, TPS65218_REG_CHIPID, &chipid);
255 if (ret) {
256 dev_err(tps->dev, "Failed to read chipid: %d\n", ret);
257 return ret;
258 }
259
260 tps->rev = chipid & TPS65218_CHIPID_REV_MASK;
261
253 ret = of_platform_populate(client->dev.of_node, NULL, NULL, 262 ret = of_platform_populate(client->dev.of_node, NULL, NULL,
254 &client->dev); 263 &client->dev);
255 if (ret < 0) 264 if (ret < 0)
diff --git a/include/linux/mfd/tps65218.h b/include/linux/mfd/tps65218.h
index 7fdf5326f34e..85e464e32c43 100644
--- a/include/linux/mfd/tps65218.h
+++ b/include/linux/mfd/tps65218.h
@@ -267,6 +267,7 @@ struct tps_info {
267struct tps65218 { 267struct tps65218 {
268 struct device *dev; 268 struct device *dev;
269 unsigned int id; 269 unsigned int id;
270 u8 rev;
270 271
271 struct mutex tps_lock; /* lock guarding the data structure */ 272 struct mutex tps_lock; /* lock guarding the data structure */
272 /* IRQ Data */ 273 /* IRQ Data */