blob: 63fe096d44621a3c771b500452240e234da6357b [file] [log] [blame]
Samu Onkalo312ea072009-12-17 15:27:07 -08001/*
2 * drivers/hwmon/lis3lv02d_i2c.c
3 *
4 * Implements I2C interface for lis3lv02d (STMicroelectronics) accelerometer.
5 * Driver is based on corresponding SPI driver written by Daniel Mack
6 * (lis3lv02d_spi.c (C) 2009 Daniel Mack <daniel@caiaq.de> ).
7 *
8 * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
9 *
10 * Contact: Samu Onkalo <samu.p.onkalo@nokia.com>
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * version 2 as published by the Free Software Foundation.
15 *
16 * This program is distributed in the hope that it will be useful, but
17 * WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
24 * 02110-1301 USA
25 */
26
27#include <linux/module.h>
28#include <linux/kernel.h>
Samu Onkalo312ea072009-12-17 15:27:07 -080029#include <linux/err.h>
30#include <linux/i2c.h>
Samu Onkalo2a346992010-10-22 07:57:23 -040031#include <linux/pm_runtime.h>
Samu Onkalof9deb412010-10-22 07:57:24 -040032#include <linux/delay.h>
AnilKumar Ch5dc2db02012-09-26 13:58:26 -070033#include <linux/of.h>
34#include <linux/of_platform.h>
35#include <linux/of_device.h>
36
Samu Onkalo312ea072009-12-17 15:27:07 -080037#include "lis3lv02d.h"
38
Jean Delvareff606672011-03-21 17:59:36 +010039#define DRV_NAME "lis3lv02d_i2c"
Samu Onkalo312ea072009-12-17 15:27:07 -080040
Samu Onkalof9deb412010-10-22 07:57:24 -040041static const char reg_vdd[] = "Vdd";
42static const char reg_vdd_io[] = "Vdd_IO";
43
44static int lis3_reg_ctrl(struct lis3lv02d *lis3, bool state)
45{
46 int ret;
47 if (state == LIS3_REG_OFF) {
48 ret = regulator_bulk_disable(ARRAY_SIZE(lis3->regulators),
49 lis3->regulators);
50 } else {
51 ret = regulator_bulk_enable(ARRAY_SIZE(lis3->regulators),
52 lis3->regulators);
53 /* Chip needs time to wakeup. Not mentioned in datasheet */
54 usleep_range(10000, 20000);
55 }
56 return ret;
57}
58
Samu Onkalo312ea072009-12-17 15:27:07 -080059static inline s32 lis3_i2c_write(struct lis3lv02d *lis3, int reg, u8 value)
60{
61 struct i2c_client *c = lis3->bus_priv;
62 return i2c_smbus_write_byte_data(c, reg, value);
63}
64
65static inline s32 lis3_i2c_read(struct lis3lv02d *lis3, int reg, u8 *v)
66{
67 struct i2c_client *c = lis3->bus_priv;
68 *v = i2c_smbus_read_byte_data(c, reg);
69 return 0;
70}
71
Samu Onkalof10a5402010-10-22 07:57:31 -040072static inline s32 lis3_i2c_blockread(struct lis3lv02d *lis3, int reg, int len,
73 u8 *v)
74{
75 struct i2c_client *c = lis3->bus_priv;
76 reg |= (1 << 7); /* 7th bit enables address auto incrementation */
77 return i2c_smbus_read_i2c_block_data(c, reg, len, v);
78}
79
Samu Onkalo312ea072009-12-17 15:27:07 -080080static int lis3_i2c_init(struct lis3lv02d *lis3)
81{
82 u8 reg;
83 int ret;
84
Mark Brownec400c92011-10-31 17:11:07 -070085 lis3_reg_ctrl(lis3, LIS3_REG_ON);
Samu Onkalof9deb412010-10-22 07:57:24 -040086
87 lis3->read(lis3, WHO_AM_I, &reg);
88 if (reg != lis3->whoami)
89 printk(KERN_ERR "lis3: power on failure\n");
90
Samu Onkalo312ea072009-12-17 15:27:07 -080091 /* power up the device */
92 ret = lis3->read(lis3, CTRL_REG1, &reg);
93 if (ret < 0)
94 return ret;
95
AnilKumar Ch0bf5a8b2012-08-22 12:00:39 +053096 if (lis3->whoami == WAI_3DLH)
97 reg |= CTRL1_PM0 | CTRL1_Xen | CTRL1_Yen | CTRL1_Zen;
98 else
99 reg |= CTRL1_PD0 | CTRL1_Xen | CTRL1_Yen | CTRL1_Zen;
100
Samu Onkalo312ea072009-12-17 15:27:07 -0800101 return lis3->write(lis3, CTRL_REG1, reg);
102}
103
104/* Default axis mapping but it can be overwritten by platform data */
Takashi Iwai2ee32142010-10-01 17:14:25 -0400105static union axis_conversion lis3lv02d_axis_map =
106 { .as_array = { LIS3_DEV_X, LIS3_DEV_Y, LIS3_DEV_Z } };
Samu Onkalo312ea072009-12-17 15:27:07 -0800107
AnilKumar Ch5dc2db02012-09-26 13:58:26 -0700108#ifdef CONFIG_OF
109static struct of_device_id lis3lv02d_i2c_dt_ids[] = {
110 { .compatible = "st,lis3lv02d" },
111 {}
112};
113MODULE_DEVICE_TABLE(of, lis3lv02d_i2c_dt_ids);
114#endif
115
Bill Pemberton80c8ae22012-11-19 13:23:05 -0500116static int lis3lv02d_i2c_probe(struct i2c_client *client,
Samu Onkalo312ea072009-12-17 15:27:07 -0800117 const struct i2c_device_id *id)
118{
119 int ret = 0;
120 struct lis3lv02d_platform_data *pdata = client->dev.platform_data;
121
AnilKumar Ch5dc2db02012-09-26 13:58:26 -0700122#ifdef CONFIG_OF
123 if (of_match_device(lis3lv02d_i2c_dt_ids, &client->dev)) {
124 lis3_dev.of_node = client->dev.of_node;
125 ret = lis3lv02d_init_dt(&lis3_dev);
126 if (ret)
127 return ret;
128 pdata = lis3_dev.pdata;
129 }
130#endif
131
Samu Onkalo312ea072009-12-17 15:27:07 -0800132 if (pdata) {
Samu Onkalof10a5402010-10-22 07:57:31 -0400133 if ((pdata->driver_features & LIS3_USE_BLOCK_READ) &&
134 (i2c_check_functionality(client->adapter,
135 I2C_FUNC_SMBUS_I2C_BLOCK)))
136 lis3_dev.blkread = lis3_i2c_blockread;
137
Samu Onkalo312ea072009-12-17 15:27:07 -0800138 if (pdata->axis_x)
139 lis3lv02d_axis_map.x = pdata->axis_x;
140
141 if (pdata->axis_y)
142 lis3lv02d_axis_map.y = pdata->axis_y;
143
144 if (pdata->axis_z)
145 lis3lv02d_axis_map.z = pdata->axis_z;
146
147 if (pdata->setup_resources)
148 ret = pdata->setup_resources();
149
150 if (ret)
151 goto fail;
152 }
153
Mark Brownec400c92011-10-31 17:11:07 -0700154 lis3_dev.regulators[0].supply = reg_vdd;
155 lis3_dev.regulators[1].supply = reg_vdd_io;
156 ret = regulator_bulk_get(&client->dev,
157 ARRAY_SIZE(lis3_dev.regulators),
158 lis3_dev.regulators);
159 if (ret < 0)
160 goto fail;
Samu Onkalof9deb412010-10-22 07:57:24 -0400161
Samu Onkalo312ea072009-12-17 15:27:07 -0800162 lis3_dev.pdata = pdata;
163 lis3_dev.bus_priv = client;
164 lis3_dev.init = lis3_i2c_init;
165 lis3_dev.read = lis3_i2c_read;
166 lis3_dev.write = lis3_i2c_write;
167 lis3_dev.irq = client->irq;
168 lis3_dev.ac = lis3lv02d_axis_map;
Samu Onkalo2a346992010-10-22 07:57:23 -0400169 lis3_dev.pm_dev = &client->dev;
Samu Onkalo312ea072009-12-17 15:27:07 -0800170
171 i2c_set_clientdata(client, &lis3_dev);
Samu Onkalof9deb412010-10-22 07:57:24 -0400172
173 /* Provide power over the init call */
Mark Brownec400c92011-10-31 17:11:07 -0700174 lis3_reg_ctrl(&lis3_dev, LIS3_REG_ON);
Samu Onkalof9deb412010-10-22 07:57:24 -0400175
Samu Onkalo312ea072009-12-17 15:27:07 -0800176 ret = lis3lv02d_init_device(&lis3_dev);
Samu Onkalof9deb412010-10-22 07:57:24 -0400177
Mark Brownec400c92011-10-31 17:11:07 -0700178 lis3_reg_ctrl(&lis3_dev, LIS3_REG_OFF);
Samu Onkalob11e7b32010-10-22 07:57:34 -0400179
Éric Piel00215862011-10-31 17:10:54 -0700180 if (ret)
181 goto fail2;
182 return 0;
183
184fail2:
185 regulator_bulk_free(ARRAY_SIZE(lis3_dev.regulators),
186 lis3_dev.regulators);
Samu Onkalo312ea072009-12-17 15:27:07 -0800187fail:
Samu Onkalob11e7b32010-10-22 07:57:34 -0400188 if (pdata && pdata->release_resources)
189 pdata->release_resources();
Samu Onkalo312ea072009-12-17 15:27:07 -0800190 return ret;
191}
192
Bill Pemberton486a5c22012-11-19 13:26:02 -0500193static int lis3lv02d_i2c_remove(struct i2c_client *client)
Samu Onkalo312ea072009-12-17 15:27:07 -0800194{
Samu Onkalof9deb412010-10-22 07:57:24 -0400195 struct lis3lv02d *lis3 = i2c_get_clientdata(client);
Samu Onkalo312ea072009-12-17 15:27:07 -0800196 struct lis3lv02d_platform_data *pdata = client->dev.platform_data;
197
198 if (pdata && pdata->release_resources)
199 pdata->release_resources();
200
Éric Piele1e56872011-10-31 17:11:02 -0700201 lis3lv02d_joystick_disable(lis3);
Samu Onkalof9deb412010-10-22 07:57:24 -0400202 lis3lv02d_remove_fs(&lis3_dev);
Samu Onkalo312ea072009-12-17 15:27:07 -0800203
Mark Brownec400c92011-10-31 17:11:07 -0700204 regulator_bulk_free(ARRAY_SIZE(lis3->regulators),
205 lis3_dev.regulators);
Samu Onkalof9deb412010-10-22 07:57:24 -0400206 return 0;
Samu Onkalo312ea072009-12-17 15:27:07 -0800207}
208
Guenter Roeck32292f42010-11-18 21:06:45 -0800209#ifdef CONFIG_PM_SLEEP
Samu Onkalo2a346992010-10-22 07:57:23 -0400210static int lis3lv02d_i2c_suspend(struct device *dev)
Samu Onkalo312ea072009-12-17 15:27:07 -0800211{
Samu Onkalo2a346992010-10-22 07:57:23 -0400212 struct i2c_client *client = container_of(dev, struct i2c_client, dev);
Samu Onkalo312ea072009-12-17 15:27:07 -0800213 struct lis3lv02d *lis3 = i2c_get_clientdata(client);
214
Kuninori Morimoto5facb092010-09-17 17:24:10 +0200215 if (!lis3->pdata || !lis3->pdata->wakeup_flags)
Samu Onkalo312ea072009-12-17 15:27:07 -0800216 lis3lv02d_poweroff(lis3);
217 return 0;
218}
219
Samu Onkalo2a346992010-10-22 07:57:23 -0400220static int lis3lv02d_i2c_resume(struct device *dev)
Samu Onkalo312ea072009-12-17 15:27:07 -0800221{
Samu Onkalo2a346992010-10-22 07:57:23 -0400222 struct i2c_client *client = container_of(dev, struct i2c_client, dev);
Samu Onkalo312ea072009-12-17 15:27:07 -0800223 struct lis3lv02d *lis3 = i2c_get_clientdata(client);
224
Samu Onkalo2a346992010-10-22 07:57:23 -0400225 /*
226 * pm_runtime documentation says that devices should always
227 * be powered on at resume. Pm_runtime turns them off after system
228 * wide resume is complete.
229 */
230 if (!lis3->pdata || !lis3->pdata->wakeup_flags ||
231 pm_runtime_suspended(dev))
Samu Onkalo312ea072009-12-17 15:27:07 -0800232 lis3lv02d_poweron(lis3);
Samu Onkalo312ea072009-12-17 15:27:07 -0800233
Samu Onkalo2a346992010-10-22 07:57:23 -0400234 return 0;
Samu Onkalo312ea072009-12-17 15:27:07 -0800235}
Guenter Roeck32292f42010-11-18 21:06:45 -0800236#endif /* CONFIG_PM_SLEEP */
Samu Onkalo312ea072009-12-17 15:27:07 -0800237
Rafael J. Wysockibbd6d052014-12-04 22:43:07 +0100238#ifdef CONFIG_PM
Samu Onkalo2a346992010-10-22 07:57:23 -0400239static int lis3_i2c_runtime_suspend(struct device *dev)
240{
241 struct i2c_client *client = container_of(dev, struct i2c_client, dev);
242 struct lis3lv02d *lis3 = i2c_get_clientdata(client);
243
244 lis3lv02d_poweroff(lis3);
245 return 0;
246}
247
248static int lis3_i2c_runtime_resume(struct device *dev)
249{
250 struct i2c_client *client = container_of(dev, struct i2c_client, dev);
251 struct lis3lv02d *lis3 = i2c_get_clientdata(client);
252
253 lis3lv02d_poweron(lis3);
254 return 0;
255}
Rafael J. Wysockibbd6d052014-12-04 22:43:07 +0100256#endif /* CONFIG_PM */
Samu Onkalo2a346992010-10-22 07:57:23 -0400257
Samu Onkalo312ea072009-12-17 15:27:07 -0800258static const struct i2c_device_id lis3lv02d_id[] = {
AnilKumar Che2b2ed82012-09-24 14:53:49 +0530259 {"lis3lv02d", LIS3LV02D},
AnilKumar Ch0bf5a8b2012-08-22 12:00:39 +0530260 {"lis331dlh", LIS331DLH},
Samu Onkalo312ea072009-12-17 15:27:07 -0800261 {}
262};
263
264MODULE_DEVICE_TABLE(i2c, lis3lv02d_id);
265
Samu Onkalo2a346992010-10-22 07:57:23 -0400266static const struct dev_pm_ops lis3_pm_ops = {
267 SET_SYSTEM_SLEEP_PM_OPS(lis3lv02d_i2c_suspend,
268 lis3lv02d_i2c_resume)
269 SET_RUNTIME_PM_OPS(lis3_i2c_runtime_suspend,
270 lis3_i2c_runtime_resume,
271 NULL)
272};
273
Samu Onkalo312ea072009-12-17 15:27:07 -0800274static struct i2c_driver lis3lv02d_i2c_driver = {
275 .driver = {
276 .name = DRV_NAME,
277 .owner = THIS_MODULE,
Samu Onkalo2a346992010-10-22 07:57:23 -0400278 .pm = &lis3_pm_ops,
AnilKumar Ch5dc2db02012-09-26 13:58:26 -0700279 .of_match_table = of_match_ptr(lis3lv02d_i2c_dt_ids),
Samu Onkalo312ea072009-12-17 15:27:07 -0800280 },
Samu Onkalo312ea072009-12-17 15:27:07 -0800281 .probe = lis3lv02d_i2c_probe,
Bill Pemberton2d6bed92012-11-19 13:21:23 -0500282 .remove = lis3lv02d_i2c_remove,
Samu Onkalo312ea072009-12-17 15:27:07 -0800283 .id_table = lis3lv02d_id,
284};
285
Axel Lina64fe2e2012-01-22 15:36:45 +0800286module_i2c_driver(lis3lv02d_i2c_driver);
Samu Onkalo312ea072009-12-17 15:27:07 -0800287
288MODULE_AUTHOR("Nokia Corporation");
289MODULE_DESCRIPTION("lis3lv02d I2C interface");
290MODULE_LICENSE("GPL");