xref: /linux/drivers/misc/lis3lv02d/lis3lv02d_i2c.c (revision bbd6d050754731ee882e5c80fba448db2a63dfe8)
1ff606677SJean Delvare /*
2ff606677SJean Delvare  * drivers/hwmon/lis3lv02d_i2c.c
3ff606677SJean Delvare  *
4ff606677SJean Delvare  * Implements I2C interface for lis3lv02d (STMicroelectronics) accelerometer.
5ff606677SJean Delvare  * Driver is based on corresponding SPI driver written by Daniel Mack
6ff606677SJean Delvare  * (lis3lv02d_spi.c (C) 2009 Daniel Mack <daniel@caiaq.de> ).
7ff606677SJean Delvare  *
8ff606677SJean Delvare  * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
9ff606677SJean Delvare  *
10ff606677SJean Delvare  * Contact: Samu Onkalo <samu.p.onkalo@nokia.com>
11ff606677SJean Delvare  *
12ff606677SJean Delvare  * This program is free software; you can redistribute it and/or
13ff606677SJean Delvare  * modify it under the terms of the GNU General Public License
14ff606677SJean Delvare  * version 2 as published by the Free Software Foundation.
15ff606677SJean Delvare  *
16ff606677SJean Delvare  * This program is distributed in the hope that it will be useful, but
17ff606677SJean Delvare  * WITHOUT ANY WARRANTY; without even the implied warranty of
18ff606677SJean Delvare  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19ff606677SJean Delvare  * General Public License for more details.
20ff606677SJean Delvare  *
21ff606677SJean Delvare  * You should have received a copy of the GNU General Public License
22ff606677SJean Delvare  * along with this program; if not, write to the Free Software
23ff606677SJean Delvare  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
24ff606677SJean Delvare  * 02110-1301 USA
25ff606677SJean Delvare  */
26ff606677SJean Delvare 
27ff606677SJean Delvare #include <linux/module.h>
28ff606677SJean Delvare #include <linux/kernel.h>
29ff606677SJean Delvare #include <linux/err.h>
30ff606677SJean Delvare #include <linux/i2c.h>
31ff606677SJean Delvare #include <linux/pm_runtime.h>
32ff606677SJean Delvare #include <linux/delay.h>
335dc2db05SAnilKumar Ch #include <linux/of.h>
345dc2db05SAnilKumar Ch #include <linux/of_platform.h>
355dc2db05SAnilKumar Ch #include <linux/of_device.h>
365dc2db05SAnilKumar Ch 
37ff606677SJean Delvare #include "lis3lv02d.h"
38ff606677SJean Delvare 
39ff606677SJean Delvare #define DRV_NAME	"lis3lv02d_i2c"
40ff606677SJean Delvare 
41ff606677SJean Delvare static const char reg_vdd[]    = "Vdd";
42ff606677SJean Delvare static const char reg_vdd_io[] = "Vdd_IO";
43ff606677SJean Delvare 
44ff606677SJean Delvare static int lis3_reg_ctrl(struct lis3lv02d *lis3, bool state)
45ff606677SJean Delvare {
46ff606677SJean Delvare 	int ret;
47ff606677SJean Delvare 	if (state == LIS3_REG_OFF) {
48ff606677SJean Delvare 		ret = regulator_bulk_disable(ARRAY_SIZE(lis3->regulators),
49ff606677SJean Delvare 					lis3->regulators);
50ff606677SJean Delvare 	} else {
51ff606677SJean Delvare 		ret = regulator_bulk_enable(ARRAY_SIZE(lis3->regulators),
52ff606677SJean Delvare 					lis3->regulators);
53ff606677SJean Delvare 		/* Chip needs time to wakeup. Not mentioned in datasheet */
54ff606677SJean Delvare 		usleep_range(10000, 20000);
55ff606677SJean Delvare 	}
56ff606677SJean Delvare 	return ret;
57ff606677SJean Delvare }
58ff606677SJean Delvare 
59ff606677SJean Delvare static inline s32 lis3_i2c_write(struct lis3lv02d *lis3, int reg, u8 value)
60ff606677SJean Delvare {
61ff606677SJean Delvare 	struct i2c_client *c = lis3->bus_priv;
62ff606677SJean Delvare 	return i2c_smbus_write_byte_data(c, reg, value);
63ff606677SJean Delvare }
64ff606677SJean Delvare 
65ff606677SJean Delvare static inline s32 lis3_i2c_read(struct lis3lv02d *lis3, int reg, u8 *v)
66ff606677SJean Delvare {
67ff606677SJean Delvare 	struct i2c_client *c = lis3->bus_priv;
68ff606677SJean Delvare 	*v = i2c_smbus_read_byte_data(c, reg);
69ff606677SJean Delvare 	return 0;
70ff606677SJean Delvare }
71ff606677SJean Delvare 
72ff606677SJean Delvare static inline s32 lis3_i2c_blockread(struct lis3lv02d *lis3, int reg, int len,
73ff606677SJean Delvare 				u8 *v)
74ff606677SJean Delvare {
75ff606677SJean Delvare 	struct i2c_client *c = lis3->bus_priv;
76ff606677SJean Delvare 	reg |= (1 << 7); /* 7th bit enables address auto incrementation */
77ff606677SJean Delvare 	return i2c_smbus_read_i2c_block_data(c, reg, len, v);
78ff606677SJean Delvare }
79ff606677SJean Delvare 
80ff606677SJean Delvare static int lis3_i2c_init(struct lis3lv02d *lis3)
81ff606677SJean Delvare {
82ff606677SJean Delvare 	u8 reg;
83ff606677SJean Delvare 	int ret;
84ff606677SJean Delvare 
85ff606677SJean Delvare 	lis3_reg_ctrl(lis3, LIS3_REG_ON);
86ff606677SJean Delvare 
87ff606677SJean Delvare 	lis3->read(lis3, WHO_AM_I, &reg);
88ff606677SJean Delvare 	if (reg != lis3->whoami)
89ff606677SJean Delvare 		printk(KERN_ERR "lis3: power on failure\n");
90ff606677SJean Delvare 
91ff606677SJean Delvare 	/* power up the device */
92ff606677SJean Delvare 	ret = lis3->read(lis3, CTRL_REG1, &reg);
93ff606677SJean Delvare 	if (ret < 0)
94ff606677SJean Delvare 		return ret;
95ff606677SJean Delvare 
960bf5a8beSAnilKumar Ch 	if (lis3->whoami == WAI_3DLH)
970bf5a8beSAnilKumar Ch 		reg |= CTRL1_PM0 | CTRL1_Xen | CTRL1_Yen | CTRL1_Zen;
980bf5a8beSAnilKumar Ch 	else
99ff606677SJean Delvare 		reg |= CTRL1_PD0 | CTRL1_Xen | CTRL1_Yen | CTRL1_Zen;
1000bf5a8beSAnilKumar Ch 
101ff606677SJean Delvare 	return lis3->write(lis3, CTRL_REG1, reg);
102ff606677SJean Delvare }
103ff606677SJean Delvare 
104ff606677SJean Delvare /* Default axis mapping but it can be overwritten by platform data */
105ff606677SJean Delvare static union axis_conversion lis3lv02d_axis_map =
106ff606677SJean Delvare 	{ .as_array = { LIS3_DEV_X, LIS3_DEV_Y, LIS3_DEV_Z } };
107ff606677SJean Delvare 
1085dc2db05SAnilKumar Ch #ifdef CONFIG_OF
1095dc2db05SAnilKumar Ch static struct of_device_id lis3lv02d_i2c_dt_ids[] = {
1105dc2db05SAnilKumar Ch 	{ .compatible = "st,lis3lv02d" },
1115dc2db05SAnilKumar Ch 	{}
1125dc2db05SAnilKumar Ch };
1135dc2db05SAnilKumar Ch MODULE_DEVICE_TABLE(of, lis3lv02d_i2c_dt_ids);
1145dc2db05SAnilKumar Ch #endif
1155dc2db05SAnilKumar Ch 
11680c8ae28SBill Pemberton static int lis3lv02d_i2c_probe(struct i2c_client *client,
117ff606677SJean Delvare 					const struct i2c_device_id *id)
118ff606677SJean Delvare {
119ff606677SJean Delvare 	int ret = 0;
120ff606677SJean Delvare 	struct lis3lv02d_platform_data *pdata = client->dev.platform_data;
121ff606677SJean Delvare 
1225dc2db05SAnilKumar Ch #ifdef CONFIG_OF
1235dc2db05SAnilKumar Ch 	if (of_match_device(lis3lv02d_i2c_dt_ids, &client->dev)) {
1245dc2db05SAnilKumar Ch 		lis3_dev.of_node = client->dev.of_node;
1255dc2db05SAnilKumar Ch 		ret = lis3lv02d_init_dt(&lis3_dev);
1265dc2db05SAnilKumar Ch 		if (ret)
1275dc2db05SAnilKumar Ch 			return ret;
1285dc2db05SAnilKumar Ch 		pdata = lis3_dev.pdata;
1295dc2db05SAnilKumar Ch 	}
1305dc2db05SAnilKumar Ch #endif
1315dc2db05SAnilKumar Ch 
132ff606677SJean Delvare 	if (pdata) {
133ff606677SJean Delvare 		if ((pdata->driver_features & LIS3_USE_BLOCK_READ) &&
134ff606677SJean Delvare 			(i2c_check_functionality(client->adapter,
135ff606677SJean Delvare 						I2C_FUNC_SMBUS_I2C_BLOCK)))
136ff606677SJean Delvare 			lis3_dev.blkread  = lis3_i2c_blockread;
137ff606677SJean Delvare 
138ff606677SJean Delvare 		if (pdata->axis_x)
139ff606677SJean Delvare 			lis3lv02d_axis_map.x = pdata->axis_x;
140ff606677SJean Delvare 
141ff606677SJean Delvare 		if (pdata->axis_y)
142ff606677SJean Delvare 			lis3lv02d_axis_map.y = pdata->axis_y;
143ff606677SJean Delvare 
144ff606677SJean Delvare 		if (pdata->axis_z)
145ff606677SJean Delvare 			lis3lv02d_axis_map.z = pdata->axis_z;
146ff606677SJean Delvare 
147ff606677SJean Delvare 		if (pdata->setup_resources)
148ff606677SJean Delvare 			ret = pdata->setup_resources();
149ff606677SJean Delvare 
150ff606677SJean Delvare 		if (ret)
151ff606677SJean Delvare 			goto fail;
152ff606677SJean Delvare 	}
153ff606677SJean Delvare 
154ff606677SJean Delvare 	lis3_dev.regulators[0].supply = reg_vdd;
155ff606677SJean Delvare 	lis3_dev.regulators[1].supply = reg_vdd_io;
156ff606677SJean Delvare 	ret = regulator_bulk_get(&client->dev,
157ff606677SJean Delvare 				 ARRAY_SIZE(lis3_dev.regulators),
158ff606677SJean Delvare 				 lis3_dev.regulators);
159ff606677SJean Delvare 	if (ret < 0)
160ff606677SJean Delvare 		goto fail;
161ff606677SJean Delvare 
162ff606677SJean Delvare 	lis3_dev.pdata	  = pdata;
163ff606677SJean Delvare 	lis3_dev.bus_priv = client;
164ff606677SJean Delvare 	lis3_dev.init	  = lis3_i2c_init;
165ff606677SJean Delvare 	lis3_dev.read	  = lis3_i2c_read;
166ff606677SJean Delvare 	lis3_dev.write	  = lis3_i2c_write;
167ff606677SJean Delvare 	lis3_dev.irq	  = client->irq;
168ff606677SJean Delvare 	lis3_dev.ac	  = lis3lv02d_axis_map;
169ff606677SJean Delvare 	lis3_dev.pm_dev	  = &client->dev;
170ff606677SJean Delvare 
171ff606677SJean Delvare 	i2c_set_clientdata(client, &lis3_dev);
172ff606677SJean Delvare 
173ff606677SJean Delvare 	/* Provide power over the init call */
174ff606677SJean Delvare 	lis3_reg_ctrl(&lis3_dev, LIS3_REG_ON);
175ff606677SJean Delvare 
176ff606677SJean Delvare 	ret = lis3lv02d_init_device(&lis3_dev);
177ff606677SJean Delvare 
178ff606677SJean Delvare 	lis3_reg_ctrl(&lis3_dev, LIS3_REG_OFF);
179ff606677SJean Delvare 
1800021586bSÉric Piel 	if (ret)
1810021586bSÉric Piel 		goto fail2;
182ff606677SJean Delvare 	return 0;
1830021586bSÉric Piel 
1840021586bSÉric Piel fail2:
1850021586bSÉric Piel 	regulator_bulk_free(ARRAY_SIZE(lis3_dev.regulators),
1860021586bSÉric Piel 				lis3_dev.regulators);
187ff606677SJean Delvare fail:
188ff606677SJean Delvare 	if (pdata && pdata->release_resources)
189ff606677SJean Delvare 		pdata->release_resources();
190ff606677SJean Delvare 	return ret;
191ff606677SJean Delvare }
192ff606677SJean Delvare 
193486a5c28SBill Pemberton static int lis3lv02d_i2c_remove(struct i2c_client *client)
194ff606677SJean Delvare {
195ff606677SJean Delvare 	struct lis3lv02d *lis3 = i2c_get_clientdata(client);
196ff606677SJean Delvare 	struct lis3lv02d_platform_data *pdata = client->dev.platform_data;
197ff606677SJean Delvare 
198ff606677SJean Delvare 	if (pdata && pdata->release_resources)
199ff606677SJean Delvare 		pdata->release_resources();
200ff606677SJean Delvare 
201e1e5687dSÉric Piel 	lis3lv02d_joystick_disable(lis3);
202ff606677SJean Delvare 	lis3lv02d_remove_fs(&lis3_dev);
203ff606677SJean Delvare 
204ff606677SJean Delvare 	regulator_bulk_free(ARRAY_SIZE(lis3->regulators),
205ff606677SJean Delvare 			    lis3_dev.regulators);
206ff606677SJean Delvare 	return 0;
207ff606677SJean Delvare }
208ff606677SJean Delvare 
209ff606677SJean Delvare #ifdef CONFIG_PM_SLEEP
210ff606677SJean Delvare static int lis3lv02d_i2c_suspend(struct device *dev)
211ff606677SJean Delvare {
212ff606677SJean Delvare 	struct i2c_client *client = container_of(dev, struct i2c_client, dev);
213ff606677SJean Delvare 	struct lis3lv02d *lis3 = i2c_get_clientdata(client);
214ff606677SJean Delvare 
215ff606677SJean Delvare 	if (!lis3->pdata || !lis3->pdata->wakeup_flags)
216ff606677SJean Delvare 		lis3lv02d_poweroff(lis3);
217ff606677SJean Delvare 	return 0;
218ff606677SJean Delvare }
219ff606677SJean Delvare 
220ff606677SJean Delvare static int lis3lv02d_i2c_resume(struct device *dev)
221ff606677SJean Delvare {
222ff606677SJean Delvare 	struct i2c_client *client = container_of(dev, struct i2c_client, dev);
223ff606677SJean Delvare 	struct lis3lv02d *lis3 = i2c_get_clientdata(client);
224ff606677SJean Delvare 
225ff606677SJean Delvare 	/*
226ff606677SJean Delvare 	 * pm_runtime documentation says that devices should always
227ff606677SJean Delvare 	 * be powered on at resume. Pm_runtime turns them off after system
228ff606677SJean Delvare 	 * wide resume is complete.
229ff606677SJean Delvare 	 */
230ff606677SJean Delvare 	if (!lis3->pdata || !lis3->pdata->wakeup_flags ||
231ff606677SJean Delvare 		pm_runtime_suspended(dev))
232ff606677SJean Delvare 		lis3lv02d_poweron(lis3);
233ff606677SJean Delvare 
234ff606677SJean Delvare 	return 0;
235ff606677SJean Delvare }
236ff606677SJean Delvare #endif /* CONFIG_PM_SLEEP */
237ff606677SJean Delvare 
238*bbd6d050SRafael J. Wysocki #ifdef CONFIG_PM
239ff606677SJean Delvare static int lis3_i2c_runtime_suspend(struct device *dev)
240ff606677SJean Delvare {
241ff606677SJean Delvare 	struct i2c_client *client = container_of(dev, struct i2c_client, dev);
242ff606677SJean Delvare 	struct lis3lv02d *lis3 = i2c_get_clientdata(client);
243ff606677SJean Delvare 
244ff606677SJean Delvare 	lis3lv02d_poweroff(lis3);
245ff606677SJean Delvare 	return 0;
246ff606677SJean Delvare }
247ff606677SJean Delvare 
248ff606677SJean Delvare static int lis3_i2c_runtime_resume(struct device *dev)
249ff606677SJean Delvare {
250ff606677SJean Delvare 	struct i2c_client *client = container_of(dev, struct i2c_client, dev);
251ff606677SJean Delvare 	struct lis3lv02d *lis3 = i2c_get_clientdata(client);
252ff606677SJean Delvare 
253ff606677SJean Delvare 	lis3lv02d_poweron(lis3);
254ff606677SJean Delvare 	return 0;
255ff606677SJean Delvare }
256*bbd6d050SRafael J. Wysocki #endif /* CONFIG_PM */
257ff606677SJean Delvare 
258ff606677SJean Delvare static const struct i2c_device_id lis3lv02d_id[] = {
259e2b2ed83SAnilKumar Ch 	{"lis3lv02d", LIS3LV02D},
2600bf5a8beSAnilKumar Ch 	{"lis331dlh", LIS331DLH},
261ff606677SJean Delvare 	{}
262ff606677SJean Delvare };
263ff606677SJean Delvare 
264ff606677SJean Delvare MODULE_DEVICE_TABLE(i2c, lis3lv02d_id);
265ff606677SJean Delvare 
266ff606677SJean Delvare static const struct dev_pm_ops lis3_pm_ops = {
267ff606677SJean Delvare 	SET_SYSTEM_SLEEP_PM_OPS(lis3lv02d_i2c_suspend,
268ff606677SJean Delvare 				lis3lv02d_i2c_resume)
269ff606677SJean Delvare 	SET_RUNTIME_PM_OPS(lis3_i2c_runtime_suspend,
270ff606677SJean Delvare 			   lis3_i2c_runtime_resume,
271ff606677SJean Delvare 			   NULL)
272ff606677SJean Delvare };
273ff606677SJean Delvare 
274ff606677SJean Delvare static struct i2c_driver lis3lv02d_i2c_driver = {
275ff606677SJean Delvare 	.driver	 = {
276ff606677SJean Delvare 		.name   = DRV_NAME,
277ff606677SJean Delvare 		.owner  = THIS_MODULE,
278ff606677SJean Delvare 		.pm     = &lis3_pm_ops,
2795dc2db05SAnilKumar Ch 		.of_match_table = of_match_ptr(lis3lv02d_i2c_dt_ids),
280ff606677SJean Delvare 	},
281ff606677SJean Delvare 	.probe	= lis3lv02d_i2c_probe,
2822d6bed9cSBill Pemberton 	.remove	= lis3lv02d_i2c_remove,
283ff606677SJean Delvare 	.id_table = lis3lv02d_id,
284ff606677SJean Delvare };
285ff606677SJean Delvare 
286a64fe2edSAxel Lin module_i2c_driver(lis3lv02d_i2c_driver);
287ff606677SJean Delvare 
288ff606677SJean Delvare MODULE_AUTHOR("Nokia Corporation");
289ff606677SJean Delvare MODULE_DESCRIPTION("lis3lv02d I2C interface");
290ff606677SJean Delvare MODULE_LICENSE("GPL");
291