blob: fb8705fc3aca7c37e421892b377622759834131a [file] [log] [blame]
Pavel Machek455fbdd2008-11-12 13:27:02 -08001/*
2 * lis3lv02d.c - ST LIS3LV02DL accelerometer driver
3 *
4 * Copyright (C) 2007-2008 Yan Burman
5 * Copyright (C) 2008 Eric Piel
Pavel Machekef2cfc72009-02-18 14:48:23 -08006 * Copyright (C) 2008-2009 Pavel Machek
Pavel Machek455fbdd2008-11-12 13:27:02 -08007 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 */
22
Joe Perches63366d32010-10-20 06:51:40 +000023#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
24
Pavel Machek455fbdd2008-11-12 13:27:02 -080025#include <linux/kernel.h>
Pavel Machek455fbdd2008-11-12 13:27:02 -080026#include <linux/dmi.h>
27#include <linux/module.h>
28#include <linux/types.h>
29#include <linux/platform_device.h>
30#include <linux/interrupt.h>
Eric Pieldc6ea972009-06-16 15:34:15 -070031#include <linux/input-polldev.h>
Pavel Machek455fbdd2008-11-12 13:27:02 -080032#include <linux/delay.h>
33#include <linux/wait.h>
34#include <linux/poll.h>
Samu Onkalof9deb412010-10-22 07:57:24 -040035#include <linux/slab.h>
Pavel Machek455fbdd2008-11-12 13:27:02 -080036#include <linux/freezer.h>
Pavel Machek455fbdd2008-11-12 13:27:02 -080037#include <linux/uaccess.h>
Pavel Machekef2cfc72009-02-18 14:48:23 -080038#include <linux/miscdevice.h>
Samu Onkalo2a346992010-10-22 07:57:23 -040039#include <linux/pm_runtime.h>
Jean Delvareff606672011-03-21 17:59:36 +010040#include <linux/atomic.h>
Daniel Mackcbac1a82012-09-26 13:58:16 -070041#include <linux/of_device.h>
Pavel Machek455fbdd2008-11-12 13:27:02 -080042#include "lis3lv02d.h"
43
44#define DRIVER_NAME "lis3lv02d"
Pavel Machek455fbdd2008-11-12 13:27:02 -080045
46/* joystick device poll interval in milliseconds */
47#define MDPS_POLL_INTERVAL 50
Samu Onkalo4a70a412010-05-24 14:33:37 -070048#define MDPS_POLL_MIN 0
49#define MDPS_POLL_MAX 2000
Samu Onkalo2a346992010-10-22 07:57:23 -040050
51#define LIS3_SYSFS_POWERDOWN_DELAY 5000 /* In milliseconds */
52
Samu Onkalo029756d2010-10-22 07:57:32 -040053#define SELFTEST_OK 0
54#define SELFTEST_FAIL -1
55#define SELFTEST_IRQ -2
56
57#define IRQ_LINE0 0
58#define IRQ_LINE1 1
59
Pavel Machek455fbdd2008-11-12 13:27:02 -080060/*
61 * The sensor can also generate interrupts (DRDY) but it's pretty pointless
Éric Pielbc62c142009-12-14 18:01:39 -080062 * because they are generated even if the data do not change. So it's better
Pavel Machek455fbdd2008-11-12 13:27:02 -080063 * to keep the interrupt for the free-fall event. The values are updated at
64 * 40Hz (at the lowest frequency), but as it can be pretty time consuming on
65 * some low processor, we poll the sensor only at 20Hz... enough for the
66 * joystick.
67 */
68
Samu Onkalo641615a2009-12-14 18:01:41 -080069#define LIS3_PWRON_DELAY_WAI_12B (5000)
70#define LIS3_PWRON_DELAY_WAI_8B (3000)
71
Samu Onkalo32496c72009-12-14 18:01:46 -080072/*
73 * LIS3LV02D spec says 1024 LSBs corresponds 1 G -> 1LSB is 1000/1024 mG
74 * LIS302D spec says: 18 mG / digit
75 * LIS3_ACCURACY is used to increase accuracy of the intermediate
76 * calculation results.
77 */
78#define LIS3_ACCURACY 1024
79/* Sensitivity values for -2G +2G scale */
80#define LIS3_SENSITIVITY_12B ((LIS3_ACCURACY * 1000) / 1024)
81#define LIS3_SENSITIVITY_8B (18 * LIS3_ACCURACY)
82
AnilKumar Ch0bf5a8b2012-08-22 12:00:39 +053083/*
AnilKumar Che2b2ed82012-09-24 14:53:49 +053084 * LIS331DLH spec says 1LSBs corresponds 4G/4096 -> 1LSB is 1000/1024 mG.
85 * Below macros defines sensitivity values for +/-2G. Dataout bits for
86 * +/-2G range is 12 bits so 4 bits adjustment must be done to get 12bit
87 * data from 16bit value. Currently this driver supports only 2G range.
AnilKumar Ch0bf5a8b2012-08-22 12:00:39 +053088 */
89#define LIS3DLH_SENSITIVITY_2G ((LIS3_ACCURACY * 1000) / 1024)
90#define SHIFT_ADJ_2G 4
91
Samu Onkalo477bc912010-10-22 07:57:30 -040092#define LIS3_DEFAULT_FUZZ_12B 3
93#define LIS3_DEFAULT_FLAT_12B 3
94#define LIS3_DEFAULT_FUZZ_8B 1
95#define LIS3_DEFAULT_FLAT_8B 1
Samu Onkalo32496c72009-12-14 18:01:46 -080096
Daniel Macka38da2e2009-03-31 15:24:32 -070097struct lis3lv02d lis3_dev = {
Pavel Machekbe84cfc2009-03-31 15:24:26 -070098 .misc_wait = __WAIT_QUEUE_HEAD_INITIALIZER(lis3_dev.misc_wait),
Pavel Machekef2cfc72009-02-18 14:48:23 -080099};
Pavel Machekbe84cfc2009-03-31 15:24:26 -0700100EXPORT_SYMBOL_GPL(lis3_dev);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800101
Takashi Iwai2ee32142010-10-01 17:14:25 -0400102/* just like param_set_int() but does sanity-check so that it won't point
103 * over the axis array size
104 */
105static int param_set_axis(const char *val, const struct kernel_param *kp)
106{
107 int ret = param_set_int(val, kp);
108 if (!ret) {
109 int val = *(int *)kp->arg;
110 if (val < 0)
111 val = -val;
112 if (!val || val > 3)
113 return -EINVAL;
114 }
115 return ret;
116}
117
Luis R. Rodriguez9c278472015-05-27 11:09:38 +0930118static const struct kernel_param_ops param_ops_axis = {
Takashi Iwai2ee32142010-10-01 17:14:25 -0400119 .set = param_set_axis,
120 .get = param_get_int,
121};
122
Rusty Russellbafeafe2012-01-13 09:32:16 +1030123#define param_check_axis(name, p) param_check_int(name, p)
124
Takashi Iwai2ee32142010-10-01 17:14:25 -0400125module_param_array_named(axes, lis3_dev.ac.as_array, axis, NULL, 0644);
126MODULE_PARM_DESC(axes, "Axis-mapping for x,y,z directions");
127
Daniel Macka38da2e2009-03-31 15:24:32 -0700128static s16 lis3lv02d_read_8(struct lis3lv02d *lis3, int reg)
129{
130 s8 lo;
131 if (lis3->read(lis3, reg, &lo) < 0)
132 return 0;
133
134 return lo;
135}
136
Éric Pielbc62c142009-12-14 18:01:39 -0800137static s16 lis3lv02d_read_12(struct lis3lv02d *lis3, int reg)
Pavel Machekbe84cfc2009-03-31 15:24:26 -0700138{
139 u8 lo, hi;
140
Daniel Macka38da2e2009-03-31 15:24:32 -0700141 lis3->read(lis3, reg - 1, &lo);
142 lis3->read(lis3, reg, &hi);
Pavel Machekbe84cfc2009-03-31 15:24:26 -0700143 /* In "12 bit right justified" mode, bit 6, bit 7, bit 8 = bit 5 */
144 return (s16)((hi << 8) | lo);
145}
146
AnilKumar Ch0bf5a8b2012-08-22 12:00:39 +0530147/* 12bits for 2G range, 13 bits for 4G range and 14 bits for 8G range */
AnilKumar Che2b2ed82012-09-24 14:53:49 +0530148static s16 lis331dlh_read_data(struct lis3lv02d *lis3, int reg)
AnilKumar Ch0bf5a8b2012-08-22 12:00:39 +0530149{
150 u8 lo, hi;
151 int v;
152
153 lis3->read(lis3, reg - 1, &lo);
154 lis3->read(lis3, reg, &hi);
155 v = (int) ((hi << 8) | lo);
156
157 return (s16) v >> lis3->shift_adj;
158}
159
Pavel Machek455fbdd2008-11-12 13:27:02 -0800160/**
161 * lis3lv02d_get_axis - For the given axis, give the value converted
162 * @axis: 1,2,3 - can also be negative
163 * @hw_values: raw values returned by the hardware
164 *
165 * Returns the converted value.
166 */
167static inline int lis3lv02d_get_axis(s8 axis, int hw_values[3])
168{
169 if (axis > 0)
170 return hw_values[axis - 1];
171 else
172 return -hw_values[-axis - 1];
173}
174
175/**
176 * lis3lv02d_get_xyz - Get X, Y and Z axis values from the accelerometer
Daniel Macka38da2e2009-03-31 15:24:32 -0700177 * @lis3: pointer to the device struct
178 * @x: where to store the X axis value
179 * @y: where to store the Y axis value
180 * @z: where to store the Z axis value
Pavel Machek455fbdd2008-11-12 13:27:02 -0800181 *
182 * Note that 40Hz input device can eat up about 10% CPU at 800MHZ
183 */
Daniel Macka38da2e2009-03-31 15:24:32 -0700184static void lis3lv02d_get_xyz(struct lis3lv02d *lis3, int *x, int *y, int *z)
Pavel Machek455fbdd2008-11-12 13:27:02 -0800185{
186 int position[3];
Samu Onkalo32496c72009-12-14 18:01:46 -0800187 int i;
Pavel Machek455fbdd2008-11-12 13:27:02 -0800188
Samu Onkalof10a5402010-10-22 07:57:31 -0400189 if (lis3->blkread) {
Éric Piel895c1562011-10-31 17:11:05 -0700190 if (lis3->whoami == WAI_12B) {
Samu Onkalof10a5402010-10-22 07:57:31 -0400191 u16 data[3];
192 lis3->blkread(lis3, OUTX_L, 6, (u8 *)data);
193 for (i = 0; i < 3; i++)
194 position[i] = (s16)le16_to_cpu(data[i]);
195 } else {
196 u8 data[5];
197 /* Data: x, dummy, y, dummy, z */
198 lis3->blkread(lis3, OUTX, 5, data);
199 for (i = 0; i < 3; i++)
200 position[i] = (s8)data[i * 2];
201 }
202 } else {
203 position[0] = lis3->read_data(lis3, OUTX);
204 position[1] = lis3->read_data(lis3, OUTY);
205 position[2] = lis3->read_data(lis3, OUTZ);
206 }
Pavel Machek455fbdd2008-11-12 13:27:02 -0800207
Samu Onkalo32496c72009-12-14 18:01:46 -0800208 for (i = 0; i < 3; i++)
209 position[i] = (position[i] * lis3->scale) / LIS3_ACCURACY;
210
Eric Piela002ee82009-06-16 15:34:14 -0700211 *x = lis3lv02d_get_axis(lis3->ac.x, position);
212 *y = lis3lv02d_get_axis(lis3->ac.y, position);
213 *z = lis3lv02d_get_axis(lis3->ac.z, position);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800214}
215
Samu Onkalo641615a2009-12-14 18:01:41 -0800216/* conversion btw sampling rate and the register values */
217static int lis3_12_rates[4] = {40, 160, 640, 2560};
218static int lis3_8_rates[2] = {100, 400};
Takashi Iwai78537c32010-09-23 10:01:39 -0700219static int lis3_3dc_rates[16] = {0, 1, 10, 25, 50, 100, 200, 400, 1600, 5000};
AnilKumar Ch0bf5a8b2012-08-22 12:00:39 +0530220static int lis3_3dlh_rates[4] = {50, 100, 400, 1000};
Samu Onkalo641615a2009-12-14 18:01:41 -0800221
Samu Onkaloa253aae2009-12-14 18:01:44 -0800222/* ODR is Output Data Rate */
Éric Piel895c1562011-10-31 17:11:05 -0700223static int lis3lv02d_get_odr(struct lis3lv02d *lis3)
Samu Onkalo641615a2009-12-14 18:01:41 -0800224{
225 u8 ctrl;
Samu Onkaloa253aae2009-12-14 18:01:44 -0800226 int shift;
Samu Onkalo641615a2009-12-14 18:01:41 -0800227
Éric Piel895c1562011-10-31 17:11:05 -0700228 lis3->read(lis3, CTRL_REG1, &ctrl);
229 ctrl &= lis3->odr_mask;
230 shift = ffs(lis3->odr_mask) - 1;
231 return lis3->odrs[(ctrl >> shift)];
Samu Onkaloa253aae2009-12-14 18:01:44 -0800232}
Samu Onkalo641615a2009-12-14 18:01:41 -0800233
Éric Piel1510dd52011-10-31 17:10:31 -0700234static int lis3lv02d_get_pwron_wait(struct lis3lv02d *lis3)
235{
Éric Piel895c1562011-10-31 17:11:05 -0700236 int div = lis3lv02d_get_odr(lis3);
Éric Piel1510dd52011-10-31 17:10:31 -0700237
238 if (WARN_ONCE(div == 0, "device returned spurious data"))
239 return -ENXIO;
240
241 /* LIS3 power on delay is quite long */
242 msleep(lis3->pwron_delay / div);
243 return 0;
244}
245
Éric Piel895c1562011-10-31 17:11:05 -0700246static int lis3lv02d_set_odr(struct lis3lv02d *lis3, int rate)
Samu Onkaloa253aae2009-12-14 18:01:44 -0800247{
248 u8 ctrl;
249 int i, len, shift;
250
Takashi Iwai78537c32010-09-23 10:01:39 -0700251 if (!rate)
252 return -EINVAL;
253
Éric Piel895c1562011-10-31 17:11:05 -0700254 lis3->read(lis3, CTRL_REG1, &ctrl);
255 ctrl &= ~lis3->odr_mask;
256 len = 1 << hweight_long(lis3->odr_mask); /* # of possible values */
257 shift = ffs(lis3->odr_mask) - 1;
Samu Onkaloa253aae2009-12-14 18:01:44 -0800258
259 for (i = 0; i < len; i++)
Éric Piel895c1562011-10-31 17:11:05 -0700260 if (lis3->odrs[i] == rate) {
261 lis3->write(lis3, CTRL_REG1,
Samu Onkaloa253aae2009-12-14 18:01:44 -0800262 ctrl | (i << shift));
263 return 0;
264 }
265 return -EINVAL;
Samu Onkalo641615a2009-12-14 18:01:41 -0800266}
267
Samu Onkalo2db4a762009-12-14 18:01:43 -0800268static int lis3lv02d_selftest(struct lis3lv02d *lis3, s16 results[3])
269{
Takashi Iwai78537c32010-09-23 10:01:39 -0700270 u8 ctlreg, reg;
Samu Onkalo2db4a762009-12-14 18:01:43 -0800271 s16 x, y, z;
272 u8 selftest;
273 int ret;
Samu Onkalo029756d2010-10-22 07:57:32 -0400274 u8 ctrl_reg_data;
275 unsigned char irq_cfg;
Samu Onkalo2db4a762009-12-14 18:01:43 -0800276
277 mutex_lock(&lis3->mutex);
Samu Onkalo029756d2010-10-22 07:57:32 -0400278
279 irq_cfg = lis3->irq_cfg;
Éric Piel895c1562011-10-31 17:11:05 -0700280 if (lis3->whoami == WAI_8B) {
Samu Onkalo029756d2010-10-22 07:57:32 -0400281 lis3->data_ready_count[IRQ_LINE0] = 0;
282 lis3->data_ready_count[IRQ_LINE1] = 0;
283
284 /* Change interrupt cfg to data ready for selftest */
Éric Piel895c1562011-10-31 17:11:05 -0700285 atomic_inc(&lis3->wake_thread);
Samu Onkalo029756d2010-10-22 07:57:32 -0400286 lis3->irq_cfg = LIS3_IRQ1_DATA_READY | LIS3_IRQ2_DATA_READY;
287 lis3->read(lis3, CTRL_REG3, &ctrl_reg_data);
288 lis3->write(lis3, CTRL_REG3, (ctrl_reg_data &
289 ~(LIS3_IRQ1_MASK | LIS3_IRQ2_MASK)) |
290 (LIS3_IRQ1_DATA_READY | LIS3_IRQ2_DATA_READY));
291 }
292
AnilKumar Ch0bf5a8b2012-08-22 12:00:39 +0530293 if ((lis3->whoami == WAI_3DC) || (lis3->whoami == WAI_3DLH)) {
Takashi Iwai78537c32010-09-23 10:01:39 -0700294 ctlreg = CTRL_REG4;
295 selftest = CTRL4_ST0;
296 } else {
297 ctlreg = CTRL_REG1;
Éric Piel895c1562011-10-31 17:11:05 -0700298 if (lis3->whoami == WAI_12B)
Takashi Iwai78537c32010-09-23 10:01:39 -0700299 selftest = CTRL1_ST;
300 else
301 selftest = CTRL1_STP;
302 }
Samu Onkalo2db4a762009-12-14 18:01:43 -0800303
Takashi Iwai78537c32010-09-23 10:01:39 -0700304 lis3->read(lis3, ctlreg, &reg);
305 lis3->write(lis3, ctlreg, (reg | selftest));
Éric Piel1510dd52011-10-31 17:10:31 -0700306 ret = lis3lv02d_get_pwron_wait(lis3);
307 if (ret)
308 goto fail;
Samu Onkalo2db4a762009-12-14 18:01:43 -0800309
310 /* Read directly to avoid axis remap */
311 x = lis3->read_data(lis3, OUTX);
312 y = lis3->read_data(lis3, OUTY);
313 z = lis3->read_data(lis3, OUTZ);
314
315 /* back to normal settings */
Takashi Iwai78537c32010-09-23 10:01:39 -0700316 lis3->write(lis3, ctlreg, reg);
Éric Piel1510dd52011-10-31 17:10:31 -0700317 ret = lis3lv02d_get_pwron_wait(lis3);
318 if (ret)
319 goto fail;
Samu Onkalo2db4a762009-12-14 18:01:43 -0800320
321 results[0] = x - lis3->read_data(lis3, OUTX);
322 results[1] = y - lis3->read_data(lis3, OUTY);
323 results[2] = z - lis3->read_data(lis3, OUTZ);
324
325 ret = 0;
Samu Onkalo029756d2010-10-22 07:57:32 -0400326
Éric Piel895c1562011-10-31 17:11:05 -0700327 if (lis3->whoami == WAI_8B) {
Samu Onkalo029756d2010-10-22 07:57:32 -0400328 /* Restore original interrupt configuration */
Éric Piel895c1562011-10-31 17:11:05 -0700329 atomic_dec(&lis3->wake_thread);
Samu Onkalo029756d2010-10-22 07:57:32 -0400330 lis3->write(lis3, CTRL_REG3, ctrl_reg_data);
331 lis3->irq_cfg = irq_cfg;
332
333 if ((irq_cfg & LIS3_IRQ1_MASK) &&
334 lis3->data_ready_count[IRQ_LINE0] < 2) {
335 ret = SELFTEST_IRQ;
336 goto fail;
337 }
338
339 if ((irq_cfg & LIS3_IRQ2_MASK) &&
340 lis3->data_ready_count[IRQ_LINE1] < 2) {
341 ret = SELFTEST_IRQ;
342 goto fail;
343 }
344 }
345
Samu Onkalo2db4a762009-12-14 18:01:43 -0800346 if (lis3->pdata) {
347 int i;
348 for (i = 0; i < 3; i++) {
349 /* Check against selftest acceptance limits */
350 if ((results[i] < lis3->pdata->st_min_limits[i]) ||
351 (results[i] > lis3->pdata->st_max_limits[i])) {
Samu Onkalo029756d2010-10-22 07:57:32 -0400352 ret = SELFTEST_FAIL;
Samu Onkalo2db4a762009-12-14 18:01:43 -0800353 goto fail;
354 }
355 }
356 }
357
358 /* test passed */
359fail:
360 mutex_unlock(&lis3->mutex);
361 return ret;
362}
363
Samu Onkalof9deb412010-10-22 07:57:24 -0400364/*
365 * Order of registers in the list affects to order of the restore process.
366 * Perhaps it is a good idea to set interrupt enable register as a last one
367 * after all other configurations
368 */
369static u8 lis3_wai8_regs[] = { FF_WU_CFG_1, FF_WU_THS_1, FF_WU_DURATION_1,
370 FF_WU_CFG_2, FF_WU_THS_2, FF_WU_DURATION_2,
371 CLICK_CFG, CLICK_SRC, CLICK_THSY_X, CLICK_THSZ,
372 CLICK_TIMELIMIT, CLICK_LATENCY, CLICK_WINDOW,
373 CTRL_REG1, CTRL_REG2, CTRL_REG3};
374
375static u8 lis3_wai12_regs[] = {FF_WU_CFG, FF_WU_THS_L, FF_WU_THS_H,
376 FF_WU_DURATION, DD_CFG, DD_THSI_L, DD_THSI_H,
377 DD_THSE_L, DD_THSE_H,
378 CTRL_REG1, CTRL_REG3, CTRL_REG2};
379
380static inline void lis3_context_save(struct lis3lv02d *lis3)
381{
382 int i;
383 for (i = 0; i < lis3->regs_size; i++)
384 lis3->read(lis3, lis3->regs[i], &lis3->reg_cache[i]);
385 lis3->regs_stored = true;
386}
387
388static inline void lis3_context_restore(struct lis3lv02d *lis3)
389{
390 int i;
391 if (lis3->regs_stored)
392 for (i = 0; i < lis3->regs_size; i++)
393 lis3->write(lis3, lis3->regs[i], lis3->reg_cache[i]);
394}
395
Daniel Macka38da2e2009-03-31 15:24:32 -0700396void lis3lv02d_poweroff(struct lis3lv02d *lis3)
Pavel Machek455fbdd2008-11-12 13:27:02 -0800397{
Samu Onkalof9deb412010-10-22 07:57:24 -0400398 if (lis3->reg_ctrl)
399 lis3_context_save(lis3);
Eric Piela002ee82009-06-16 15:34:14 -0700400 /* disable X,Y,Z axis and power down */
401 lis3->write(lis3, CTRL_REG1, 0x00);
Samu Onkalof9deb412010-10-22 07:57:24 -0400402 if (lis3->reg_ctrl)
403 lis3->reg_ctrl(lis3, LIS3_REG_OFF);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800404}
Eric Pielcfce41a2009-01-09 16:41:01 -0800405EXPORT_SYMBOL_GPL(lis3lv02d_poweroff);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800406
Éric Piel1510dd52011-10-31 17:10:31 -0700407int lis3lv02d_poweron(struct lis3lv02d *lis3)
Pavel Machek455fbdd2008-11-12 13:27:02 -0800408{
Éric Piel1510dd52011-10-31 17:10:31 -0700409 int err;
Eric Piela002ee82009-06-16 15:34:14 -0700410 u8 reg;
411
412 lis3->init(lis3);
413
414 /*
415 * Common configuration
Éric Piel4b5d95b2009-12-14 18:01:40 -0800416 * BDU: (12 bits sensors only) LSB and MSB values are not updated until
417 * both have been read. So the value read will always be correct.
Samu Onkalo2a7fade2010-10-22 07:57:27 -0400418 * Set BOOT bit to refresh factory tuning values.
Eric Piela002ee82009-06-16 15:34:14 -0700419 */
Takashi Iwai05faadc2011-10-03 18:09:14 -0700420 if (lis3->pdata) {
421 lis3->read(lis3, CTRL_REG2, &reg);
422 if (lis3->whoami == WAI_12B)
423 reg |= CTRL2_BDU | CTRL2_BOOT;
AnilKumar Ch0bf5a8b2012-08-22 12:00:39 +0530424 else if (lis3->whoami == WAI_3DLH)
425 reg |= CTRL2_BOOT_3DLH;
Takashi Iwai05faadc2011-10-03 18:09:14 -0700426 else
427 reg |= CTRL2_BOOT_8B;
428 lis3->write(lis3, CTRL_REG2, reg);
AnilKumar Ch0bf5a8b2012-08-22 12:00:39 +0530429
430 if (lis3->whoami == WAI_3DLH) {
431 lis3->read(lis3, CTRL_REG4, &reg);
432 reg |= CTRL4_BDU;
433 lis3->write(lis3, CTRL_REG4, reg);
434 }
Takashi Iwai05faadc2011-10-03 18:09:14 -0700435 }
Samu Onkalo2a7fade2010-10-22 07:57:27 -0400436
Éric Piel1510dd52011-10-31 17:10:31 -0700437 err = lis3lv02d_get_pwron_wait(lis3);
438 if (err)
439 return err;
Samu Onkalo2a7fade2010-10-22 07:57:27 -0400440
Samu Onkalof9deb412010-10-22 07:57:24 -0400441 if (lis3->reg_ctrl)
442 lis3_context_restore(lis3);
Éric Piel1510dd52011-10-31 17:10:31 -0700443
444 return 0;
Pavel Machek455fbdd2008-11-12 13:27:02 -0800445}
Eric Pielcfce41a2009-01-09 16:41:01 -0800446EXPORT_SYMBOL_GPL(lis3lv02d_poweron);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800447
Pavel Machek455fbdd2008-11-12 13:27:02 -0800448
Samu Onkalo6d94d402010-05-24 14:33:37 -0700449static void lis3lv02d_joystick_poll(struct input_polled_dev *pidev)
450{
Éric Piel895c1562011-10-31 17:11:05 -0700451 struct lis3lv02d *lis3 = pidev->private;
Samu Onkalo6d94d402010-05-24 14:33:37 -0700452 int x, y, z;
453
Éric Piel895c1562011-10-31 17:11:05 -0700454 mutex_lock(&lis3->mutex);
455 lis3lv02d_get_xyz(lis3, &x, &y, &z);
Samu Onkalo6d94d402010-05-24 14:33:37 -0700456 input_report_abs(pidev->input, ABS_X, x);
457 input_report_abs(pidev->input, ABS_Y, y);
458 input_report_abs(pidev->input, ABS_Z, z);
459 input_sync(pidev->input);
Éric Piel895c1562011-10-31 17:11:05 -0700460 mutex_unlock(&lis3->mutex);
Samu Onkalo6d94d402010-05-24 14:33:37 -0700461}
462
Samu Onkalo2a346992010-10-22 07:57:23 -0400463static void lis3lv02d_joystick_open(struct input_polled_dev *pidev)
464{
Éric Piel895c1562011-10-31 17:11:05 -0700465 struct lis3lv02d *lis3 = pidev->private;
Samu Onkaloe7261112010-10-22 07:57:25 -0400466
Éric Piel895c1562011-10-31 17:11:05 -0700467 if (lis3->pm_dev)
468 pm_runtime_get_sync(lis3->pm_dev);
469
470 if (lis3->pdata && lis3->whoami == WAI_8B && lis3->idev)
471 atomic_set(&lis3->wake_thread, 1);
Samu Onkalo821f6642010-10-22 07:57:26 -0400472 /*
473 * Update coordinates for the case where poll interval is 0 and
474 * the chip in running purely under interrupt control
475 */
476 lis3lv02d_joystick_poll(pidev);
Samu Onkalo2a346992010-10-22 07:57:23 -0400477}
478
479static void lis3lv02d_joystick_close(struct input_polled_dev *pidev)
480{
Éric Piel895c1562011-10-31 17:11:05 -0700481 struct lis3lv02d *lis3 = pidev->private;
482
483 atomic_set(&lis3->wake_thread, 0);
484 if (lis3->pm_dev)
485 pm_runtime_put(lis3->pm_dev);
Samu Onkalo2a346992010-10-22 07:57:23 -0400486}
487
Éric Piel895c1562011-10-31 17:11:05 -0700488static irqreturn_t lis302dl_interrupt(int irq, void *data)
Pavel Machekef2cfc72009-02-18 14:48:23 -0800489{
Éric Piel895c1562011-10-31 17:11:05 -0700490 struct lis3lv02d *lis3 = data;
491
492 if (!test_bit(0, &lis3->misc_opened))
Samu Onkalo92ba4fe2010-05-24 14:33:36 -0700493 goto out;
494
Pavel Machekef2cfc72009-02-18 14:48:23 -0800495 /*
496 * Be careful: on some HP laptops the bios force DD when on battery and
497 * the lid is closed. This leads to interrupts as soon as a little move
498 * is done.
499 */
Éric Piel895c1562011-10-31 17:11:05 -0700500 atomic_inc(&lis3->count);
Pavel Machekef2cfc72009-02-18 14:48:23 -0800501
Éric Piel895c1562011-10-31 17:11:05 -0700502 wake_up_interruptible(&lis3->misc_wait);
503 kill_fasync(&lis3->async_queue, SIGIO, POLL_IN);
Samu Onkalo92ba4fe2010-05-24 14:33:36 -0700504out:
Éric Piel895c1562011-10-31 17:11:05 -0700505 if (atomic_read(&lis3->wake_thread))
Samu Onkalo92ba4fe2010-05-24 14:33:36 -0700506 return IRQ_WAKE_THREAD;
507 return IRQ_HANDLED;
508}
509
Samu Onkalo6d94d402010-05-24 14:33:37 -0700510static void lis302dl_interrupt_handle_click(struct lis3lv02d *lis3)
511{
512 struct input_dev *dev = lis3->idev->input;
513 u8 click_src;
514
515 mutex_lock(&lis3->mutex);
516 lis3->read(lis3, CLICK_SRC, &click_src);
517
518 if (click_src & CLICK_SINGLE_X) {
519 input_report_key(dev, lis3->mapped_btns[0], 1);
520 input_report_key(dev, lis3->mapped_btns[0], 0);
521 }
522
523 if (click_src & CLICK_SINGLE_Y) {
524 input_report_key(dev, lis3->mapped_btns[1], 1);
525 input_report_key(dev, lis3->mapped_btns[1], 0);
526 }
527
528 if (click_src & CLICK_SINGLE_Z) {
529 input_report_key(dev, lis3->mapped_btns[2], 1);
530 input_report_key(dev, lis3->mapped_btns[2], 0);
531 }
532 input_sync(dev);
533 mutex_unlock(&lis3->mutex);
534}
535
Samu Onkalo029756d2010-10-22 07:57:32 -0400536static inline void lis302dl_data_ready(struct lis3lv02d *lis3, int index)
537{
538 int dummy;
539
540 /* Dummy read to ack interrupt */
541 lis3lv02d_get_xyz(lis3, &dummy, &dummy, &dummy);
542 lis3->data_ready_count[index]++;
543}
544
Samu Onkalo92ba4fe2010-05-24 14:33:36 -0700545static irqreturn_t lis302dl_interrupt_thread1_8b(int irq, void *data)
546{
Samu Onkalo6d94d402010-05-24 14:33:37 -0700547 struct lis3lv02d *lis3 = data;
Samu Onkalo029756d2010-10-22 07:57:32 -0400548 u8 irq_cfg = lis3->irq_cfg & LIS3_IRQ1_MASK;
Samu Onkalo6d94d402010-05-24 14:33:37 -0700549
Samu Onkalo029756d2010-10-22 07:57:32 -0400550 if (irq_cfg == LIS3_IRQ1_CLICK)
Samu Onkalo6d94d402010-05-24 14:33:37 -0700551 lis302dl_interrupt_handle_click(lis3);
Samu Onkalo029756d2010-10-22 07:57:32 -0400552 else if (unlikely(irq_cfg == LIS3_IRQ1_DATA_READY))
553 lis302dl_data_ready(lis3, IRQ_LINE0);
Samu Onkalo6d94d402010-05-24 14:33:37 -0700554 else
Samu Onkaloe7261112010-10-22 07:57:25 -0400555 lis3lv02d_joystick_poll(lis3->idev);
Samu Onkalo6d94d402010-05-24 14:33:37 -0700556
Samu Onkalo92ba4fe2010-05-24 14:33:36 -0700557 return IRQ_HANDLED;
558}
559
560static irqreturn_t lis302dl_interrupt_thread2_8b(int irq, void *data)
561{
Samu Onkalo6d94d402010-05-24 14:33:37 -0700562 struct lis3lv02d *lis3 = data;
Samu Onkalo029756d2010-10-22 07:57:32 -0400563 u8 irq_cfg = lis3->irq_cfg & LIS3_IRQ2_MASK;
Samu Onkalo6d94d402010-05-24 14:33:37 -0700564
Samu Onkalo029756d2010-10-22 07:57:32 -0400565 if (irq_cfg == LIS3_IRQ2_CLICK)
Samu Onkalo6d94d402010-05-24 14:33:37 -0700566 lis302dl_interrupt_handle_click(lis3);
Samu Onkalo029756d2010-10-22 07:57:32 -0400567 else if (unlikely(irq_cfg == LIS3_IRQ2_DATA_READY))
568 lis302dl_data_ready(lis3, IRQ_LINE1);
Samu Onkalo6d94d402010-05-24 14:33:37 -0700569 else
Samu Onkaloe7261112010-10-22 07:57:25 -0400570 lis3lv02d_joystick_poll(lis3->idev);
Samu Onkalo6d94d402010-05-24 14:33:37 -0700571
Pavel Machekef2cfc72009-02-18 14:48:23 -0800572 return IRQ_HANDLED;
573}
574
575static int lis3lv02d_misc_open(struct inode *inode, struct file *file)
576{
Éric Piel895c1562011-10-31 17:11:05 -0700577 struct lis3lv02d *lis3 = container_of(file->private_data,
578 struct lis3lv02d, miscdev);
579
580 if (test_and_set_bit(0, &lis3->misc_opened))
Pavel Machekef2cfc72009-02-18 14:48:23 -0800581 return -EBUSY; /* already open */
582
Éric Piel895c1562011-10-31 17:11:05 -0700583 if (lis3->pm_dev)
584 pm_runtime_get_sync(lis3->pm_dev);
Samu Onkalo2a346992010-10-22 07:57:23 -0400585
Éric Piel895c1562011-10-31 17:11:05 -0700586 atomic_set(&lis3->count, 0);
Pavel Machekef2cfc72009-02-18 14:48:23 -0800587 return 0;
588}
589
590static int lis3lv02d_misc_release(struct inode *inode, struct file *file)
591{
Éric Piel895c1562011-10-31 17:11:05 -0700592 struct lis3lv02d *lis3 = container_of(file->private_data,
593 struct lis3lv02d, miscdev);
594
Éric Piel895c1562011-10-31 17:11:05 -0700595 clear_bit(0, &lis3->misc_opened); /* release the device */
596 if (lis3->pm_dev)
597 pm_runtime_put(lis3->pm_dev);
Pavel Machekef2cfc72009-02-18 14:48:23 -0800598 return 0;
599}
600
601static ssize_t lis3lv02d_misc_read(struct file *file, char __user *buf,
602 size_t count, loff_t *pos)
603{
Éric Piel895c1562011-10-31 17:11:05 -0700604 struct lis3lv02d *lis3 = container_of(file->private_data,
605 struct lis3lv02d, miscdev);
606
Pavel Machekef2cfc72009-02-18 14:48:23 -0800607 DECLARE_WAITQUEUE(wait, current);
608 u32 data;
609 unsigned char byte_data;
610 ssize_t retval = 1;
611
612 if (count < 1)
613 return -EINVAL;
614
Éric Piel895c1562011-10-31 17:11:05 -0700615 add_wait_queue(&lis3->misc_wait, &wait);
Pavel Machekef2cfc72009-02-18 14:48:23 -0800616 while (true) {
617 set_current_state(TASK_INTERRUPTIBLE);
Éric Piel895c1562011-10-31 17:11:05 -0700618 data = atomic_xchg(&lis3->count, 0);
Pavel Machekef2cfc72009-02-18 14:48:23 -0800619 if (data)
620 break;
621
622 if (file->f_flags & O_NONBLOCK) {
623 retval = -EAGAIN;
624 goto out;
625 }
626
627 if (signal_pending(current)) {
628 retval = -ERESTARTSYS;
629 goto out;
630 }
631
632 schedule();
633 }
634
635 if (data < 255)
636 byte_data = data;
637 else
638 byte_data = 255;
639
640 /* make sure we are not going into copy_to_user() with
641 * TASK_INTERRUPTIBLE state */
642 set_current_state(TASK_RUNNING);
643 if (copy_to_user(buf, &byte_data, sizeof(byte_data)))
644 retval = -EFAULT;
645
646out:
647 __set_current_state(TASK_RUNNING);
Éric Piel895c1562011-10-31 17:11:05 -0700648 remove_wait_queue(&lis3->misc_wait, &wait);
Pavel Machekef2cfc72009-02-18 14:48:23 -0800649
650 return retval;
651}
652
653static unsigned int lis3lv02d_misc_poll(struct file *file, poll_table *wait)
654{
Éric Piel895c1562011-10-31 17:11:05 -0700655 struct lis3lv02d *lis3 = container_of(file->private_data,
656 struct lis3lv02d, miscdev);
657
658 poll_wait(file, &lis3->misc_wait, wait);
659 if (atomic_read(&lis3->count))
Pavel Machekef2cfc72009-02-18 14:48:23 -0800660 return POLLIN | POLLRDNORM;
661 return 0;
662}
663
664static int lis3lv02d_misc_fasync(int fd, struct file *file, int on)
665{
Éric Piel895c1562011-10-31 17:11:05 -0700666 struct lis3lv02d *lis3 = container_of(file->private_data,
667 struct lis3lv02d, miscdev);
668
669 return fasync_helper(fd, file, on, &lis3->async_queue);
Pavel Machekef2cfc72009-02-18 14:48:23 -0800670}
671
672static const struct file_operations lis3lv02d_misc_fops = {
673 .owner = THIS_MODULE,
674 .llseek = no_llseek,
675 .read = lis3lv02d_misc_read,
676 .open = lis3lv02d_misc_open,
677 .release = lis3lv02d_misc_release,
678 .poll = lis3lv02d_misc_poll,
679 .fasync = lis3lv02d_misc_fasync,
680};
681
Éric Piele1e56872011-10-31 17:11:02 -0700682int lis3lv02d_joystick_enable(struct lis3lv02d *lis3)
Pavel Machek455fbdd2008-11-12 13:27:02 -0800683{
Eric Pieldc6ea972009-06-16 15:34:15 -0700684 struct input_dev *input_dev;
Pavel Machek455fbdd2008-11-12 13:27:02 -0800685 int err;
Samu Onkalo32496c72009-12-14 18:01:46 -0800686 int max_val, fuzz, flat;
Samu Onkalo6d94d402010-05-24 14:33:37 -0700687 int btns[] = {BTN_X, BTN_Y, BTN_Z};
Pavel Machek455fbdd2008-11-12 13:27:02 -0800688
Éric Piel895c1562011-10-31 17:11:05 -0700689 if (lis3->idev)
Pavel Machek455fbdd2008-11-12 13:27:02 -0800690 return -EINVAL;
691
Éric Piel895c1562011-10-31 17:11:05 -0700692 lis3->idev = input_allocate_polled_device();
693 if (!lis3->idev)
Pavel Machek455fbdd2008-11-12 13:27:02 -0800694 return -ENOMEM;
695
Éric Piel895c1562011-10-31 17:11:05 -0700696 lis3->idev->poll = lis3lv02d_joystick_poll;
697 lis3->idev->open = lis3lv02d_joystick_open;
698 lis3->idev->close = lis3lv02d_joystick_close;
699 lis3->idev->poll_interval = MDPS_POLL_INTERVAL;
700 lis3->idev->poll_interval_min = MDPS_POLL_MIN;
701 lis3->idev->poll_interval_max = MDPS_POLL_MAX;
702 lis3->idev->private = lis3;
703 input_dev = lis3->idev->input;
Eric Pieldc6ea972009-06-16 15:34:15 -0700704
Eric Pieldc6ea972009-06-16 15:34:15 -0700705 input_dev->name = "ST LIS3LV02DL Accelerometer";
706 input_dev->phys = DRIVER_NAME "/input0";
707 input_dev->id.bustype = BUS_HOST;
708 input_dev->id.vendor = 0;
Éric Piel895c1562011-10-31 17:11:05 -0700709 input_dev->dev.parent = &lis3->pdev->dev;
Pavel Machek455fbdd2008-11-12 13:27:02 -0800710
Eric Pieldc6ea972009-06-16 15:34:15 -0700711 set_bit(EV_ABS, input_dev->evbit);
Éric Piel895c1562011-10-31 17:11:05 -0700712 max_val = (lis3->mdps_max_val * lis3->scale) / LIS3_ACCURACY;
713 if (lis3->whoami == WAI_12B) {
Samu Onkalo477bc912010-10-22 07:57:30 -0400714 fuzz = LIS3_DEFAULT_FUZZ_12B;
715 flat = LIS3_DEFAULT_FLAT_12B;
716 } else {
717 fuzz = LIS3_DEFAULT_FUZZ_8B;
718 flat = LIS3_DEFAULT_FLAT_8B;
719 }
Éric Piel895c1562011-10-31 17:11:05 -0700720 fuzz = (fuzz * lis3->scale) / LIS3_ACCURACY;
721 flat = (flat * lis3->scale) / LIS3_ACCURACY;
Samu Onkalo477bc912010-10-22 07:57:30 -0400722
Samu Onkalo32496c72009-12-14 18:01:46 -0800723 input_set_abs_params(input_dev, ABS_X, -max_val, max_val, fuzz, flat);
724 input_set_abs_params(input_dev, ABS_Y, -max_val, max_val, fuzz, flat);
725 input_set_abs_params(input_dev, ABS_Z, -max_val, max_val, fuzz, flat);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800726
Éric Piel895c1562011-10-31 17:11:05 -0700727 lis3->mapped_btns[0] = lis3lv02d_get_axis(abs(lis3->ac.x), btns);
728 lis3->mapped_btns[1] = lis3lv02d_get_axis(abs(lis3->ac.y), btns);
729 lis3->mapped_btns[2] = lis3lv02d_get_axis(abs(lis3->ac.z), btns);
Samu Onkalo6d94d402010-05-24 14:33:37 -0700730
Éric Piel895c1562011-10-31 17:11:05 -0700731 err = input_register_polled_device(lis3->idev);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800732 if (err) {
Éric Piel895c1562011-10-31 17:11:05 -0700733 input_free_polled_device(lis3->idev);
734 lis3->idev = NULL;
Pavel Machek455fbdd2008-11-12 13:27:02 -0800735 }
736
737 return err;
738}
Eric Pielcfce41a2009-01-09 16:41:01 -0800739EXPORT_SYMBOL_GPL(lis3lv02d_joystick_enable);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800740
Éric Piele1e56872011-10-31 17:11:02 -0700741void lis3lv02d_joystick_disable(struct lis3lv02d *lis3)
Pavel Machek455fbdd2008-11-12 13:27:02 -0800742{
Éric Piel895c1562011-10-31 17:11:05 -0700743 if (lis3->irq)
744 free_irq(lis3->irq, lis3);
745 if (lis3->pdata && lis3->pdata->irq2)
746 free_irq(lis3->pdata->irq2, lis3);
Samu Onkalo92ba4fe2010-05-24 14:33:36 -0700747
Éric Piel895c1562011-10-31 17:11:05 -0700748 if (!lis3->idev)
Pavel Machek455fbdd2008-11-12 13:27:02 -0800749 return;
750
Éric Piel895c1562011-10-31 17:11:05 -0700751 if (lis3->irq)
752 misc_deregister(&lis3->miscdev);
753 input_unregister_polled_device(lis3->idev);
754 input_free_polled_device(lis3->idev);
755 lis3->idev = NULL;
Pavel Machek455fbdd2008-11-12 13:27:02 -0800756}
Eric Pielcfce41a2009-01-09 16:41:01 -0800757EXPORT_SYMBOL_GPL(lis3lv02d_joystick_disable);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800758
Pavel Machek455fbdd2008-11-12 13:27:02 -0800759/* Sysfs stuff */
Samu Onkalo2a346992010-10-22 07:57:23 -0400760static void lis3lv02d_sysfs_poweron(struct lis3lv02d *lis3)
761{
762 /*
763 * SYSFS functions are fast visitors so put-call
764 * immediately after the get-call. However, keep
765 * chip running for a while and schedule delayed
766 * suspend. This way periodic sysfs calls doesn't
767 * suffer from relatively long power up time.
768 */
769
770 if (lis3->pm_dev) {
771 pm_runtime_get_sync(lis3->pm_dev);
772 pm_runtime_put_noidle(lis3->pm_dev);
773 pm_schedule_suspend(lis3->pm_dev, LIS3_SYSFS_POWERDOWN_DELAY);
774 }
775}
776
Samu Onkalo2db4a762009-12-14 18:01:43 -0800777static ssize_t lis3lv02d_selftest_show(struct device *dev,
778 struct device_attribute *attr, char *buf)
779{
Éric Piel895c1562011-10-31 17:11:05 -0700780 struct lis3lv02d *lis3 = dev_get_drvdata(dev);
Samu Onkalo2db4a762009-12-14 18:01:43 -0800781 s16 values[3];
782
Samu Onkalo029756d2010-10-22 07:57:32 -0400783 static const char ok[] = "OK";
784 static const char fail[] = "FAIL";
785 static const char irq[] = "FAIL_IRQ";
786 const char *res;
787
Éric Piel895c1562011-10-31 17:11:05 -0700788 lis3lv02d_sysfs_poweron(lis3);
789 switch (lis3lv02d_selftest(lis3, values)) {
Samu Onkalo029756d2010-10-22 07:57:32 -0400790 case SELFTEST_FAIL:
791 res = fail;
792 break;
793 case SELFTEST_IRQ:
794 res = irq;
795 break;
796 case SELFTEST_OK:
797 default:
798 res = ok;
799 break;
800 }
801 return sprintf(buf, "%s %d %d %d\n", res,
Samu Onkalo2db4a762009-12-14 18:01:43 -0800802 values[0], values[1], values[2]);
803}
804
Pavel Machek455fbdd2008-11-12 13:27:02 -0800805static ssize_t lis3lv02d_position_show(struct device *dev,
806 struct device_attribute *attr, char *buf)
807{
Éric Piel895c1562011-10-31 17:11:05 -0700808 struct lis3lv02d *lis3 = dev_get_drvdata(dev);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800809 int x, y, z;
810
Éric Piel895c1562011-10-31 17:11:05 -0700811 lis3lv02d_sysfs_poweron(lis3);
812 mutex_lock(&lis3->mutex);
813 lis3lv02d_get_xyz(lis3, &x, &y, &z);
814 mutex_unlock(&lis3->mutex);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800815 return sprintf(buf, "(%d,%d,%d)\n", x, y, z);
816}
817
Pavel Machek455fbdd2008-11-12 13:27:02 -0800818static ssize_t lis3lv02d_rate_show(struct device *dev,
819 struct device_attribute *attr, char *buf)
820{
Éric Piel895c1562011-10-31 17:11:05 -0700821 struct lis3lv02d *lis3 = dev_get_drvdata(dev);
822
823 lis3lv02d_sysfs_poweron(lis3);
824 return sprintf(buf, "%d\n", lis3lv02d_get_odr(lis3));
Pavel Machek455fbdd2008-11-12 13:27:02 -0800825}
826
Samu Onkaloa253aae2009-12-14 18:01:44 -0800827static ssize_t lis3lv02d_rate_set(struct device *dev,
828 struct device_attribute *attr, const char *buf,
829 size_t count)
830{
Éric Piel895c1562011-10-31 17:11:05 -0700831 struct lis3lv02d *lis3 = dev_get_drvdata(dev);
Samu Onkaloa253aae2009-12-14 18:01:44 -0800832 unsigned long rate;
Jingoo Hanf7b41272013-06-04 13:15:16 +0900833 int ret;
Samu Onkaloa253aae2009-12-14 18:01:44 -0800834
Jingoo Hanf7b41272013-06-04 13:15:16 +0900835 ret = kstrtoul(buf, 0, &rate);
836 if (ret)
837 return ret;
Samu Onkaloa253aae2009-12-14 18:01:44 -0800838
Éric Piel895c1562011-10-31 17:11:05 -0700839 lis3lv02d_sysfs_poweron(lis3);
840 if (lis3lv02d_set_odr(lis3, rate))
Samu Onkaloa253aae2009-12-14 18:01:44 -0800841 return -EINVAL;
842
843 return count;
844}
845
Samu Onkalo2db4a762009-12-14 18:01:43 -0800846static DEVICE_ATTR(selftest, S_IRUSR, lis3lv02d_selftest_show, NULL);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800847static DEVICE_ATTR(position, S_IRUGO, lis3lv02d_position_show, NULL);
Samu Onkaloa253aae2009-12-14 18:01:44 -0800848static DEVICE_ATTR(rate, S_IRUGO | S_IWUSR, lis3lv02d_rate_show,
849 lis3lv02d_rate_set);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800850
851static struct attribute *lis3lv02d_attributes[] = {
Samu Onkalo2db4a762009-12-14 18:01:43 -0800852 &dev_attr_selftest.attr,
Pavel Machek455fbdd2008-11-12 13:27:02 -0800853 &dev_attr_position.attr,
Pavel Machek455fbdd2008-11-12 13:27:02 -0800854 &dev_attr_rate.attr,
855 NULL
856};
857
858static struct attribute_group lis3lv02d_attribute_group = {
859 .attrs = lis3lv02d_attributes
860};
861
Eric Pielcfce41a2009-01-09 16:41:01 -0800862
Daniel Macka38da2e2009-03-31 15:24:32 -0700863static int lis3lv02d_add_fs(struct lis3lv02d *lis3)
Pavel Machek455fbdd2008-11-12 13:27:02 -0800864{
Eric Piela002ee82009-06-16 15:34:14 -0700865 lis3->pdev = platform_device_register_simple(DRIVER_NAME, -1, NULL, 0);
866 if (IS_ERR(lis3->pdev))
867 return PTR_ERR(lis3->pdev);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800868
Éric Piel895c1562011-10-31 17:11:05 -0700869 platform_set_drvdata(lis3->pdev, lis3);
Eric Piela002ee82009-06-16 15:34:14 -0700870 return sysfs_create_group(&lis3->pdev->dev.kobj, &lis3lv02d_attribute_group);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800871}
872
Eric Piela002ee82009-06-16 15:34:14 -0700873int lis3lv02d_remove_fs(struct lis3lv02d *lis3)
Pavel Machek455fbdd2008-11-12 13:27:02 -0800874{
Eric Piela002ee82009-06-16 15:34:14 -0700875 sysfs_remove_group(&lis3->pdev->dev.kobj, &lis3lv02d_attribute_group);
876 platform_device_unregister(lis3->pdev);
Samu Onkalo2a346992010-10-22 07:57:23 -0400877 if (lis3->pm_dev) {
878 /* Barrier after the sysfs remove */
879 pm_runtime_barrier(lis3->pm_dev);
880
881 /* SYSFS may have left chip running. Turn off if necessary */
882 if (!pm_runtime_suspended(lis3->pm_dev))
Éric Piel895c1562011-10-31 17:11:05 -0700883 lis3lv02d_poweroff(lis3);
Samu Onkalo2a346992010-10-22 07:57:23 -0400884
885 pm_runtime_disable(lis3->pm_dev);
886 pm_runtime_set_suspended(lis3->pm_dev);
887 }
Samu Onkalof9deb412010-10-22 07:57:24 -0400888 kfree(lis3->reg_cache);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800889 return 0;
890}
Eric Pielcfce41a2009-01-09 16:41:01 -0800891EXPORT_SYMBOL_GPL(lis3lv02d_remove_fs);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800892
Éric Pield7f81d42011-10-31 17:10:58 -0700893static void lis3lv02d_8b_configure(struct lis3lv02d *lis3,
Samu Onkaloecc437a2010-05-24 14:33:34 -0700894 struct lis3lv02d_platform_data *p)
895{
Samu Onkalo92ba4fe2010-05-24 14:33:36 -0700896 int err;
Samu Onkalo342c5f12010-05-24 14:33:35 -0700897 int ctrl2 = p->hipass_ctrl;
898
Samu Onkaloecc437a2010-05-24 14:33:34 -0700899 if (p->click_flags) {
Éric Pield7f81d42011-10-31 17:10:58 -0700900 lis3->write(lis3, CLICK_CFG, p->click_flags);
901 lis3->write(lis3, CLICK_TIMELIMIT, p->click_time_limit);
902 lis3->write(lis3, CLICK_LATENCY, p->click_latency);
903 lis3->write(lis3, CLICK_WINDOW, p->click_window);
904 lis3->write(lis3, CLICK_THSZ, p->click_thresh_z & 0xf);
905 lis3->write(lis3, CLICK_THSY_X,
Samu Onkaloecc437a2010-05-24 14:33:34 -0700906 (p->click_thresh_x & 0xf) |
907 (p->click_thresh_y << 4));
Samu Onkalo6d94d402010-05-24 14:33:37 -0700908
Éric Pield7f81d42011-10-31 17:10:58 -0700909 if (lis3->idev) {
Éric Piel895c1562011-10-31 17:11:05 -0700910 struct input_dev *input_dev = lis3->idev->input;
Samu Onkalo6d94d402010-05-24 14:33:37 -0700911 input_set_capability(input_dev, EV_KEY, BTN_X);
912 input_set_capability(input_dev, EV_KEY, BTN_Y);
913 input_set_capability(input_dev, EV_KEY, BTN_Z);
914 }
Samu Onkaloecc437a2010-05-24 14:33:34 -0700915 }
916
917 if (p->wakeup_flags) {
Éric Pield7f81d42011-10-31 17:10:58 -0700918 lis3->write(lis3, FF_WU_CFG_1, p->wakeup_flags);
919 lis3->write(lis3, FF_WU_THS_1, p->wakeup_thresh & 0x7f);
Samu Onkalocc23aa12010-10-22 07:57:29 -0400920 /* pdata value + 1 to keep this backward compatible*/
Éric Pield7f81d42011-10-31 17:10:58 -0700921 lis3->write(lis3, FF_WU_DURATION_1, p->duration1 + 1);
Samu Onkalo342c5f12010-05-24 14:33:35 -0700922 ctrl2 ^= HP_FF_WU1; /* Xor to keep compatible with old pdata*/
Samu Onkaloecc437a2010-05-24 14:33:34 -0700923 }
Samu Onkalo342c5f12010-05-24 14:33:35 -0700924
925 if (p->wakeup_flags2) {
Éric Pield7f81d42011-10-31 17:10:58 -0700926 lis3->write(lis3, FF_WU_CFG_2, p->wakeup_flags2);
927 lis3->write(lis3, FF_WU_THS_2, p->wakeup_thresh2 & 0x7f);
Samu Onkalocc23aa12010-10-22 07:57:29 -0400928 /* pdata value + 1 to keep this backward compatible*/
Éric Pield7f81d42011-10-31 17:10:58 -0700929 lis3->write(lis3, FF_WU_DURATION_2, p->duration2 + 1);
Samu Onkalo342c5f12010-05-24 14:33:35 -0700930 ctrl2 ^= HP_FF_WU2; /* Xor to keep compatible with old pdata*/
931 }
932 /* Configure hipass filters */
Éric Pield7f81d42011-10-31 17:10:58 -0700933 lis3->write(lis3, CTRL_REG2, ctrl2);
Samu Onkalo92ba4fe2010-05-24 14:33:36 -0700934
935 if (p->irq2) {
936 err = request_threaded_irq(p->irq2,
937 NULL,
938 lis302dl_interrupt_thread2_8b,
Samu Onkalocc23aa12010-10-22 07:57:29 -0400939 IRQF_TRIGGER_RISING | IRQF_ONESHOT |
940 (p->irq_flags2 & IRQF_TRIGGER_MASK),
Éric Piel895c1562011-10-31 17:11:05 -0700941 DRIVER_NAME, lis3);
Samu Onkalo92ba4fe2010-05-24 14:33:36 -0700942 if (err < 0)
Joe Perches63366d32010-10-20 06:51:40 +0000943 pr_err("No second IRQ. Limited functionality\n");
Samu Onkalo92ba4fe2010-05-24 14:33:36 -0700944 }
Samu Onkaloecc437a2010-05-24 14:33:34 -0700945}
946
Daniel Mackcbac1a82012-09-26 13:58:16 -0700947#ifdef CONFIG_OF
AnilKumar Ch0c83adb2012-09-26 13:58:21 -0700948int lis3lv02d_init_dt(struct lis3lv02d *lis3)
Daniel Mackcbac1a82012-09-26 13:58:16 -0700949{
950 struct lis3lv02d_platform_data *pdata;
951 struct device_node *np = lis3->of_node;
952 u32 val;
Sebastian Reichelcdcd6f82015-03-27 15:39:43 +0100953 s32 sval;
Daniel Mackcbac1a82012-09-26 13:58:16 -0700954
955 if (!lis3->of_node)
956 return 0;
957
958 pdata = kzalloc(sizeof(*pdata), GFP_KERNEL);
959 if (!pdata)
960 return -ENOMEM;
961
962 if (of_get_property(np, "st,click-single-x", NULL))
963 pdata->click_flags |= LIS3_CLICK_SINGLE_X;
964 if (of_get_property(np, "st,click-double-x", NULL))
965 pdata->click_flags |= LIS3_CLICK_DOUBLE_X;
966
967 if (of_get_property(np, "st,click-single-y", NULL))
968 pdata->click_flags |= LIS3_CLICK_SINGLE_Y;
969 if (of_get_property(np, "st,click-double-y", NULL))
970 pdata->click_flags |= LIS3_CLICK_DOUBLE_Y;
971
972 if (of_get_property(np, "st,click-single-z", NULL))
973 pdata->click_flags |= LIS3_CLICK_SINGLE_Z;
974 if (of_get_property(np, "st,click-double-z", NULL))
975 pdata->click_flags |= LIS3_CLICK_DOUBLE_Z;
976
977 if (!of_property_read_u32(np, "st,click-threshold-x", &val))
978 pdata->click_thresh_x = val;
979 if (!of_property_read_u32(np, "st,click-threshold-y", &val))
980 pdata->click_thresh_y = val;
981 if (!of_property_read_u32(np, "st,click-threshold-z", &val))
982 pdata->click_thresh_z = val;
983
984 if (!of_property_read_u32(np, "st,click-time-limit", &val))
985 pdata->click_time_limit = val;
986 if (!of_property_read_u32(np, "st,click-latency", &val))
987 pdata->click_latency = val;
988 if (!of_property_read_u32(np, "st,click-window", &val))
989 pdata->click_window = val;
990
991 if (of_get_property(np, "st,irq1-disable", NULL))
992 pdata->irq_cfg |= LIS3_IRQ1_DISABLE;
993 if (of_get_property(np, "st,irq1-ff-wu-1", NULL))
994 pdata->irq_cfg |= LIS3_IRQ1_FF_WU_1;
995 if (of_get_property(np, "st,irq1-ff-wu-2", NULL))
996 pdata->irq_cfg |= LIS3_IRQ1_FF_WU_2;
997 if (of_get_property(np, "st,irq1-data-ready", NULL))
998 pdata->irq_cfg |= LIS3_IRQ1_DATA_READY;
999 if (of_get_property(np, "st,irq1-click", NULL))
1000 pdata->irq_cfg |= LIS3_IRQ1_CLICK;
1001
1002 if (of_get_property(np, "st,irq2-disable", NULL))
1003 pdata->irq_cfg |= LIS3_IRQ2_DISABLE;
1004 if (of_get_property(np, "st,irq2-ff-wu-1", NULL))
1005 pdata->irq_cfg |= LIS3_IRQ2_FF_WU_1;
1006 if (of_get_property(np, "st,irq2-ff-wu-2", NULL))
1007 pdata->irq_cfg |= LIS3_IRQ2_FF_WU_2;
1008 if (of_get_property(np, "st,irq2-data-ready", NULL))
1009 pdata->irq_cfg |= LIS3_IRQ2_DATA_READY;
1010 if (of_get_property(np, "st,irq2-click", NULL))
1011 pdata->irq_cfg |= LIS3_IRQ2_CLICK;
1012
1013 if (of_get_property(np, "st,irq-open-drain", NULL))
1014 pdata->irq_cfg |= LIS3_IRQ_OPEN_DRAIN;
1015 if (of_get_property(np, "st,irq-active-low", NULL))
1016 pdata->irq_cfg |= LIS3_IRQ_ACTIVE_LOW;
1017
1018 if (!of_property_read_u32(np, "st,wu-duration-1", &val))
1019 pdata->duration1 = val;
1020 if (!of_property_read_u32(np, "st,wu-duration-2", &val))
1021 pdata->duration2 = val;
1022
1023 if (of_get_property(np, "st,wakeup-x-lo", NULL))
1024 pdata->wakeup_flags |= LIS3_WAKEUP_X_LO;
1025 if (of_get_property(np, "st,wakeup-x-hi", NULL))
1026 pdata->wakeup_flags |= LIS3_WAKEUP_X_HI;
1027 if (of_get_property(np, "st,wakeup-y-lo", NULL))
1028 pdata->wakeup_flags |= LIS3_WAKEUP_Y_LO;
1029 if (of_get_property(np, "st,wakeup-y-hi", NULL))
1030 pdata->wakeup_flags |= LIS3_WAKEUP_Y_HI;
1031 if (of_get_property(np, "st,wakeup-z-lo", NULL))
1032 pdata->wakeup_flags |= LIS3_WAKEUP_Z_LO;
1033 if (of_get_property(np, "st,wakeup-z-hi", NULL))
1034 pdata->wakeup_flags |= LIS3_WAKEUP_Z_HI;
Sebastian Reichelc5131a32015-03-27 15:39:44 +01001035 if (of_get_property(np, "st,wakeup-threshold", &val))
1036 pdata->wakeup_thresh = val;
1037
1038 if (of_get_property(np, "st,wakeup2-x-lo", NULL))
1039 pdata->wakeup_flags2 |= LIS3_WAKEUP_X_LO;
1040 if (of_get_property(np, "st,wakeup2-x-hi", NULL))
1041 pdata->wakeup_flags2 |= LIS3_WAKEUP_X_HI;
1042 if (of_get_property(np, "st,wakeup2-y-lo", NULL))
1043 pdata->wakeup_flags2 |= LIS3_WAKEUP_Y_LO;
1044 if (of_get_property(np, "st,wakeup2-y-hi", NULL))
1045 pdata->wakeup_flags2 |= LIS3_WAKEUP_Y_HI;
1046 if (of_get_property(np, "st,wakeup2-z-lo", NULL))
1047 pdata->wakeup_flags2 |= LIS3_WAKEUP_Z_LO;
1048 if (of_get_property(np, "st,wakeup2-z-hi", NULL))
1049 pdata->wakeup_flags2 |= LIS3_WAKEUP_Z_HI;
1050 if (of_get_property(np, "st,wakeup2-threshold", &val))
1051 pdata->wakeup_thresh2 = val;
Daniel Mackcbac1a82012-09-26 13:58:16 -07001052
1053 if (!of_property_read_u32(np, "st,highpass-cutoff-hz", &val)) {
1054 switch (val) {
1055 case 1:
1056 pdata->hipass_ctrl = LIS3_HIPASS_CUTFF_1HZ;
1057 break;
1058 case 2:
1059 pdata->hipass_ctrl = LIS3_HIPASS_CUTFF_2HZ;
1060 break;
1061 case 4:
1062 pdata->hipass_ctrl = LIS3_HIPASS_CUTFF_4HZ;
1063 break;
1064 case 8:
1065 pdata->hipass_ctrl = LIS3_HIPASS_CUTFF_8HZ;
1066 break;
1067 }
1068 }
1069
1070 if (of_get_property(np, "st,hipass1-disable", NULL))
1071 pdata->hipass_ctrl |= LIS3_HIPASS1_DISABLE;
1072 if (of_get_property(np, "st,hipass2-disable", NULL))
1073 pdata->hipass_ctrl |= LIS3_HIPASS2_DISABLE;
1074
Sebastian Reichelcdcd6f82015-03-27 15:39:43 +01001075 if (of_property_read_s32(np, "st,axis-x", &sval) == 0)
1076 pdata->axis_x = sval;
1077 if (of_property_read_s32(np, "st,axis-y", &sval) == 0)
1078 pdata->axis_y = sval;
1079 if (of_property_read_s32(np, "st,axis-z", &sval) == 0)
1080 pdata->axis_z = sval;
Daniel Mackcbac1a82012-09-26 13:58:16 -07001081
1082 if (of_get_property(np, "st,default-rate", NULL))
1083 pdata->default_rate = val;
1084
Sebastian Reichelcdcd6f82015-03-27 15:39:43 +01001085 if (of_property_read_s32(np, "st,min-limit-x", &sval) == 0)
1086 pdata->st_min_limits[0] = sval;
1087 if (of_property_read_s32(np, "st,min-limit-y", &sval) == 0)
1088 pdata->st_min_limits[1] = sval;
1089 if (of_property_read_s32(np, "st,min-limit-z", &sval) == 0)
1090 pdata->st_min_limits[2] = sval;
Daniel Mackcbac1a82012-09-26 13:58:16 -07001091
Sebastian Reichelcdcd6f82015-03-27 15:39:43 +01001092 if (of_property_read_s32(np, "st,max-limit-x", &sval) == 0)
1093 pdata->st_max_limits[0] = sval;
1094 if (of_property_read_s32(np, "st,max-limit-y", &sval) == 0)
1095 pdata->st_max_limits[1] = sval;
1096 if (of_property_read_s32(np, "st,max-limit-z", &sval) == 0)
1097 pdata->st_max_limits[2] = sval;
Daniel Mackcbac1a82012-09-26 13:58:16 -07001098
1099
1100 lis3->pdata = pdata;
1101
1102 return 0;
1103}
1104
1105#else
AnilKumar Ch0c83adb2012-09-26 13:58:21 -07001106int lis3lv02d_init_dt(struct lis3lv02d *lis3)
Daniel Mackcbac1a82012-09-26 13:58:16 -07001107{
1108 return 0;
1109}
1110#endif
1111EXPORT_SYMBOL_GPL(lis3lv02d_init_dt);
1112
Daniel Mackab337a62009-03-31 15:24:31 -07001113/*
1114 * Initialise the accelerometer and the various subsystems.
Éric Pielbc62c142009-12-14 18:01:39 -08001115 * Should be rather independent of the bus system.
Daniel Mackab337a62009-03-31 15:24:31 -07001116 */
Éric Pield7f81d42011-10-31 17:10:58 -07001117int lis3lv02d_init_device(struct lis3lv02d *lis3)
Daniel Mackab337a62009-03-31 15:24:31 -07001118{
Samu Onkalo92ba4fe2010-05-24 14:33:36 -07001119 int err;
1120 irq_handler_t thread_fn;
Samu Onkalocc23aa12010-10-22 07:57:29 -04001121 int irq_flags = 0;
Samu Onkalo92ba4fe2010-05-24 14:33:36 -07001122
Éric Pield7f81d42011-10-31 17:10:58 -07001123 lis3->whoami = lis3lv02d_read_8(lis3, WHO_AM_I);
Daniel Macka38da2e2009-03-31 15:24:32 -07001124
Éric Pield7f81d42011-10-31 17:10:58 -07001125 switch (lis3->whoami) {
Éric Pielbc62c142009-12-14 18:01:39 -08001126 case WAI_12B:
Joe Perches63366d32010-10-20 06:51:40 +00001127 pr_info("12 bits sensor found\n");
Éric Pield7f81d42011-10-31 17:10:58 -07001128 lis3->read_data = lis3lv02d_read_12;
1129 lis3->mdps_max_val = 2048;
1130 lis3->pwron_delay = LIS3_PWRON_DELAY_WAI_12B;
1131 lis3->odrs = lis3_12_rates;
1132 lis3->odr_mask = CTRL1_DF0 | CTRL1_DF1;
1133 lis3->scale = LIS3_SENSITIVITY_12B;
1134 lis3->regs = lis3_wai12_regs;
1135 lis3->regs_size = ARRAY_SIZE(lis3_wai12_regs);
Daniel Macka38da2e2009-03-31 15:24:32 -07001136 break;
Éric Pielbc62c142009-12-14 18:01:39 -08001137 case WAI_8B:
Joe Perches63366d32010-10-20 06:51:40 +00001138 pr_info("8 bits sensor found\n");
Éric Pield7f81d42011-10-31 17:10:58 -07001139 lis3->read_data = lis3lv02d_read_8;
1140 lis3->mdps_max_val = 128;
1141 lis3->pwron_delay = LIS3_PWRON_DELAY_WAI_8B;
1142 lis3->odrs = lis3_8_rates;
1143 lis3->odr_mask = CTRL1_DR;
1144 lis3->scale = LIS3_SENSITIVITY_8B;
1145 lis3->regs = lis3_wai8_regs;
1146 lis3->regs_size = ARRAY_SIZE(lis3_wai8_regs);
Daniel Macka38da2e2009-03-31 15:24:32 -07001147 break;
Takashi Iwai78537c32010-09-23 10:01:39 -07001148 case WAI_3DC:
Joe Perches63366d32010-10-20 06:51:40 +00001149 pr_info("8 bits 3DC sensor found\n");
Éric Pield7f81d42011-10-31 17:10:58 -07001150 lis3->read_data = lis3lv02d_read_8;
1151 lis3->mdps_max_val = 128;
1152 lis3->pwron_delay = LIS3_PWRON_DELAY_WAI_8B;
1153 lis3->odrs = lis3_3dc_rates;
1154 lis3->odr_mask = CTRL1_ODR0|CTRL1_ODR1|CTRL1_ODR2|CTRL1_ODR3;
1155 lis3->scale = LIS3_SENSITIVITY_8B;
Takashi Iwai78537c32010-09-23 10:01:39 -07001156 break;
AnilKumar Ch0bf5a8b2012-08-22 12:00:39 +05301157 case WAI_3DLH:
AnilKumar Che2b2ed82012-09-24 14:53:49 +05301158 pr_info("16 bits lis331dlh sensor found\n");
1159 lis3->read_data = lis331dlh_read_data;
AnilKumar Ch0bf5a8b2012-08-22 12:00:39 +05301160 lis3->mdps_max_val = 2048; /* 12 bits for 2G */
1161 lis3->shift_adj = SHIFT_ADJ_2G;
1162 lis3->pwron_delay = LIS3_PWRON_DELAY_WAI_8B;
1163 lis3->odrs = lis3_3dlh_rates;
1164 lis3->odr_mask = CTRL1_DR0 | CTRL1_DR1;
1165 lis3->scale = LIS3DLH_SENSITIVITY_2G;
1166 break;
Daniel Macka38da2e2009-03-31 15:24:32 -07001167 default:
Éric Pield7f81d42011-10-31 17:10:58 -07001168 pr_err("unknown sensor type 0x%X\n", lis3->whoami);
Daniel Macka38da2e2009-03-31 15:24:32 -07001169 return -EINVAL;
1170 }
1171
Éric Pield7f81d42011-10-31 17:10:58 -07001172 lis3->reg_cache = kzalloc(max(sizeof(lis3_wai8_regs),
Samu Onkalof9deb412010-10-22 07:57:24 -04001173 sizeof(lis3_wai12_regs)), GFP_KERNEL);
1174
Éric Pield7f81d42011-10-31 17:10:58 -07001175 if (lis3->reg_cache == NULL) {
Samu Onkalof9deb412010-10-22 07:57:24 -04001176 printk(KERN_ERR DRIVER_NAME "out of memory\n");
1177 return -ENOMEM;
1178 }
1179
Éric Pield7f81d42011-10-31 17:10:58 -07001180 mutex_init(&lis3->mutex);
1181 atomic_set(&lis3->wake_thread, 0);
Samu Onkalo2db4a762009-12-14 18:01:43 -08001182
Éric Pield7f81d42011-10-31 17:10:58 -07001183 lis3lv02d_add_fs(lis3);
1184 err = lis3lv02d_poweron(lis3);
Éric Piel1510dd52011-10-31 17:10:31 -07001185 if (err) {
Éric Pield7f81d42011-10-31 17:10:58 -07001186 lis3lv02d_remove_fs(lis3);
Éric Piel1510dd52011-10-31 17:10:31 -07001187 return err;
1188 }
Daniel Mackab337a62009-03-31 15:24:31 -07001189
Éric Pield7f81d42011-10-31 17:10:58 -07001190 if (lis3->pm_dev) {
1191 pm_runtime_set_active(lis3->pm_dev);
1192 pm_runtime_enable(lis3->pm_dev);
Samu Onkalo2a346992010-10-22 07:57:23 -04001193 }
1194
Éric Piele1e56872011-10-31 17:11:02 -07001195 if (lis3lv02d_joystick_enable(lis3))
Joe Perches63366d32010-10-20 06:51:40 +00001196 pr_err("joystick initialization failed\n");
Daniel Mackab337a62009-03-31 15:24:31 -07001197
Daniel Mack8f3128e2009-06-16 15:34:17 -07001198 /* passing in platform specific data is purely optional and only
1199 * used by the SPI transport layer at the moment */
Éric Pield7f81d42011-10-31 17:10:58 -07001200 if (lis3->pdata) {
1201 struct lis3lv02d_platform_data *p = lis3->pdata;
Daniel Mack8f3128e2009-06-16 15:34:17 -07001202
Éric Pield7f81d42011-10-31 17:10:58 -07001203 if (lis3->whoami == WAI_8B)
1204 lis3lv02d_8b_configure(lis3, p);
Daniel Mack8873c332009-09-21 17:04:43 -07001205
Samu Onkalocc23aa12010-10-22 07:57:29 -04001206 irq_flags = p->irq_flags1 & IRQF_TRIGGER_MASK;
1207
Éric Pield7f81d42011-10-31 17:10:58 -07001208 lis3->irq_cfg = p->irq_cfg;
Daniel Mack8f3128e2009-06-16 15:34:17 -07001209 if (p->irq_cfg)
Éric Pield7f81d42011-10-31 17:10:58 -07001210 lis3->write(lis3, CTRL_REG3, p->irq_cfg);
Samu Onkalocc23aa12010-10-22 07:57:29 -04001211
1212 if (p->default_rate)
Éric Piel895c1562011-10-31 17:11:05 -07001213 lis3lv02d_set_odr(lis3, p->default_rate);
Daniel Mack8f3128e2009-06-16 15:34:17 -07001214 }
1215
Daniel Macka38da2e2009-03-31 15:24:32 -07001216 /* bail if we did not get an IRQ from the bus layer */
Éric Pield7f81d42011-10-31 17:10:58 -07001217 if (!lis3->irq) {
Kalhan Trisala20f0bc2011-01-25 14:24:37 +00001218 pr_debug("No IRQ. Disabling /dev/freefall\n");
Daniel Mackab337a62009-03-31 15:24:31 -07001219 goto out;
1220 }
1221
Samu Onkalo92ba4fe2010-05-24 14:33:36 -07001222 /*
1223 * The sensor can generate interrupts for free-fall and direction
1224 * detection (distinguishable with FF_WU_SRC and DD_SRC) but to keep
1225 * the things simple and _fast_ we activate it only for free-fall, so
1226 * no need to read register (very slow with ACPI). For the same reason,
1227 * we forbid shared interrupts.
1228 *
1229 * IRQF_TRIGGER_RISING seems pointless on HP laptops because the
1230 * io-apic is not configurable (and generates a warning) but I keep it
1231 * in case of support for other hardware.
1232 */
Éric Pield7f81d42011-10-31 17:10:58 -07001233 if (lis3->pdata && lis3->whoami == WAI_8B)
Samu Onkalo92ba4fe2010-05-24 14:33:36 -07001234 thread_fn = lis302dl_interrupt_thread1_8b;
1235 else
1236 thread_fn = NULL;
1237
Éric Pield7f81d42011-10-31 17:10:58 -07001238 err = request_threaded_irq(lis3->irq, lis302dl_interrupt,
Samu Onkalo92ba4fe2010-05-24 14:33:36 -07001239 thread_fn,
Samu Onkalocc23aa12010-10-22 07:57:29 -04001240 IRQF_TRIGGER_RISING | IRQF_ONESHOT |
1241 irq_flags,
Éric Piel895c1562011-10-31 17:11:05 -07001242 DRIVER_NAME, lis3);
Samu Onkalo92ba4fe2010-05-24 14:33:36 -07001243
1244 if (err < 0) {
Joe Perches63366d32010-10-20 06:51:40 +00001245 pr_err("Cannot get IRQ\n");
Samu Onkalo92ba4fe2010-05-24 14:33:36 -07001246 goto out;
1247 }
1248
Éric Piel895c1562011-10-31 17:11:05 -07001249 lis3->miscdev.minor = MISC_DYNAMIC_MINOR;
1250 lis3->miscdev.name = "freefall";
1251 lis3->miscdev.fops = &lis3lv02d_misc_fops;
1252
1253 if (misc_register(&lis3->miscdev))
Joe Perches63366d32010-10-20 06:51:40 +00001254 pr_err("misc_register failed\n");
Daniel Mackab337a62009-03-31 15:24:31 -07001255out:
Daniel Mackab337a62009-03-31 15:24:31 -07001256 return 0;
1257}
1258EXPORT_SYMBOL_GPL(lis3lv02d_init_device);
1259
Pavel Machek455fbdd2008-11-12 13:27:02 -08001260MODULE_DESCRIPTION("ST LIS3LV02Dx three-axis digital accelerometer driver");
Pavel Machekef2cfc72009-02-18 14:48:23 -08001261MODULE_AUTHOR("Yan Burman, Eric Piel, Pavel Machek");
Pavel Machek455fbdd2008-11-12 13:27:02 -08001262MODULE_LICENSE("GPL");