blob: 1b674b7d4584ee74b1f8399f87ea9d5e62c22dfc [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>
26#include <linux/init.h>
27#include <linux/dmi.h>
28#include <linux/module.h>
29#include <linux/types.h>
30#include <linux/platform_device.h>
31#include <linux/interrupt.h>
Eric Pieldc6ea972009-06-16 15:34:15 -070032#include <linux/input-polldev.h>
Pavel Machek455fbdd2008-11-12 13:27:02 -080033#include <linux/delay.h>
34#include <linux/wait.h>
35#include <linux/poll.h>
Samu Onkalof9deb412010-10-22 07:57:24 -040036#include <linux/slab.h>
Pavel Machek455fbdd2008-11-12 13:27:02 -080037#include <linux/freezer.h>
Pavel Machek455fbdd2008-11-12 13:27:02 -080038#include <linux/uaccess.h>
Pavel Machekef2cfc72009-02-18 14:48:23 -080039#include <linux/miscdevice.h>
Samu Onkalo2a346992010-10-22 07:57:23 -040040#include <linux/pm_runtime.h>
Pavel Machek455fbdd2008-11-12 13:27:02 -080041#include <asm/atomic.h>
42#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
Samu Onkalo477bc912010-10-22 07:57:30 -040083#define LIS3_DEFAULT_FUZZ_12B 3
84#define LIS3_DEFAULT_FLAT_12B 3
85#define LIS3_DEFAULT_FUZZ_8B 1
86#define LIS3_DEFAULT_FLAT_8B 1
Samu Onkalo32496c72009-12-14 18:01:46 -080087
Daniel Macka38da2e2009-03-31 15:24:32 -070088struct lis3lv02d lis3_dev = {
Pavel Machekbe84cfc2009-03-31 15:24:26 -070089 .misc_wait = __WAIT_QUEUE_HEAD_INITIALIZER(lis3_dev.misc_wait),
Pavel Machekef2cfc72009-02-18 14:48:23 -080090};
91
Pavel Machekbe84cfc2009-03-31 15:24:26 -070092EXPORT_SYMBOL_GPL(lis3_dev);
Pavel Machek455fbdd2008-11-12 13:27:02 -080093
Takashi Iwai2ee32142010-10-01 17:14:25 -040094/* just like param_set_int() but does sanity-check so that it won't point
95 * over the axis array size
96 */
97static int param_set_axis(const char *val, const struct kernel_param *kp)
98{
99 int ret = param_set_int(val, kp);
100 if (!ret) {
101 int val = *(int *)kp->arg;
102 if (val < 0)
103 val = -val;
104 if (!val || val > 3)
105 return -EINVAL;
106 }
107 return ret;
108}
109
110static struct kernel_param_ops param_ops_axis = {
111 .set = param_set_axis,
112 .get = param_get_int,
113};
114
115module_param_array_named(axes, lis3_dev.ac.as_array, axis, NULL, 0644);
116MODULE_PARM_DESC(axes, "Axis-mapping for x,y,z directions");
117
Daniel Macka38da2e2009-03-31 15:24:32 -0700118static s16 lis3lv02d_read_8(struct lis3lv02d *lis3, int reg)
119{
120 s8 lo;
121 if (lis3->read(lis3, reg, &lo) < 0)
122 return 0;
123
124 return lo;
125}
126
Éric Pielbc62c142009-12-14 18:01:39 -0800127static s16 lis3lv02d_read_12(struct lis3lv02d *lis3, int reg)
Pavel Machekbe84cfc2009-03-31 15:24:26 -0700128{
129 u8 lo, hi;
130
Daniel Macka38da2e2009-03-31 15:24:32 -0700131 lis3->read(lis3, reg - 1, &lo);
132 lis3->read(lis3, reg, &hi);
Pavel Machekbe84cfc2009-03-31 15:24:26 -0700133 /* In "12 bit right justified" mode, bit 6, bit 7, bit 8 = bit 5 */
134 return (s16)((hi << 8) | lo);
135}
136
Pavel Machek455fbdd2008-11-12 13:27:02 -0800137/**
138 * lis3lv02d_get_axis - For the given axis, give the value converted
139 * @axis: 1,2,3 - can also be negative
140 * @hw_values: raw values returned by the hardware
141 *
142 * Returns the converted value.
143 */
144static inline int lis3lv02d_get_axis(s8 axis, int hw_values[3])
145{
146 if (axis > 0)
147 return hw_values[axis - 1];
148 else
149 return -hw_values[-axis - 1];
150}
151
152/**
153 * lis3lv02d_get_xyz - Get X, Y and Z axis values from the accelerometer
Daniel Macka38da2e2009-03-31 15:24:32 -0700154 * @lis3: pointer to the device struct
155 * @x: where to store the X axis value
156 * @y: where to store the Y axis value
157 * @z: where to store the Z axis value
Pavel Machek455fbdd2008-11-12 13:27:02 -0800158 *
159 * Note that 40Hz input device can eat up about 10% CPU at 800MHZ
160 */
Daniel Macka38da2e2009-03-31 15:24:32 -0700161static void lis3lv02d_get_xyz(struct lis3lv02d *lis3, int *x, int *y, int *z)
Pavel Machek455fbdd2008-11-12 13:27:02 -0800162{
163 int position[3];
Samu Onkalo32496c72009-12-14 18:01:46 -0800164 int i;
Pavel Machek455fbdd2008-11-12 13:27:02 -0800165
Samu Onkalof10a5402010-10-22 07:57:31 -0400166 if (lis3->blkread) {
167 if (lis3_dev.whoami == WAI_12B) {
168 u16 data[3];
169 lis3->blkread(lis3, OUTX_L, 6, (u8 *)data);
170 for (i = 0; i < 3; i++)
171 position[i] = (s16)le16_to_cpu(data[i]);
172 } else {
173 u8 data[5];
174 /* Data: x, dummy, y, dummy, z */
175 lis3->blkread(lis3, OUTX, 5, data);
176 for (i = 0; i < 3; i++)
177 position[i] = (s8)data[i * 2];
178 }
179 } else {
180 position[0] = lis3->read_data(lis3, OUTX);
181 position[1] = lis3->read_data(lis3, OUTY);
182 position[2] = lis3->read_data(lis3, OUTZ);
183 }
Pavel Machek455fbdd2008-11-12 13:27:02 -0800184
Samu Onkalo32496c72009-12-14 18:01:46 -0800185 for (i = 0; i < 3; i++)
186 position[i] = (position[i] * lis3->scale) / LIS3_ACCURACY;
187
Eric Piela002ee82009-06-16 15:34:14 -0700188 *x = lis3lv02d_get_axis(lis3->ac.x, position);
189 *y = lis3lv02d_get_axis(lis3->ac.y, position);
190 *z = lis3lv02d_get_axis(lis3->ac.z, position);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800191}
192
Samu Onkalo641615a2009-12-14 18:01:41 -0800193/* conversion btw sampling rate and the register values */
194static int lis3_12_rates[4] = {40, 160, 640, 2560};
195static int lis3_8_rates[2] = {100, 400};
Takashi Iwai78537c32010-09-23 10:01:39 -0700196static int lis3_3dc_rates[16] = {0, 1, 10, 25, 50, 100, 200, 400, 1600, 5000};
Samu Onkalo641615a2009-12-14 18:01:41 -0800197
Samu Onkaloa253aae2009-12-14 18:01:44 -0800198/* ODR is Output Data Rate */
Samu Onkalo641615a2009-12-14 18:01:41 -0800199static int lis3lv02d_get_odr(void)
200{
201 u8 ctrl;
Samu Onkaloa253aae2009-12-14 18:01:44 -0800202 int shift;
Samu Onkalo641615a2009-12-14 18:01:41 -0800203
204 lis3_dev.read(&lis3_dev, CTRL_REG1, &ctrl);
Samu Onkaloa253aae2009-12-14 18:01:44 -0800205 ctrl &= lis3_dev.odr_mask;
206 shift = ffs(lis3_dev.odr_mask) - 1;
207 return lis3_dev.odrs[(ctrl >> shift)];
208}
Samu Onkalo641615a2009-12-14 18:01:41 -0800209
Samu Onkaloa253aae2009-12-14 18:01:44 -0800210static int lis3lv02d_set_odr(int rate)
211{
212 u8 ctrl;
213 int i, len, shift;
214
Takashi Iwai78537c32010-09-23 10:01:39 -0700215 if (!rate)
216 return -EINVAL;
217
Samu Onkaloa253aae2009-12-14 18:01:44 -0800218 lis3_dev.read(&lis3_dev, CTRL_REG1, &ctrl);
219 ctrl &= ~lis3_dev.odr_mask;
220 len = 1 << hweight_long(lis3_dev.odr_mask); /* # of possible values */
221 shift = ffs(lis3_dev.odr_mask) - 1;
222
223 for (i = 0; i < len; i++)
224 if (lis3_dev.odrs[i] == rate) {
225 lis3_dev.write(&lis3_dev, CTRL_REG1,
226 ctrl | (i << shift));
227 return 0;
228 }
229 return -EINVAL;
Samu Onkalo641615a2009-12-14 18:01:41 -0800230}
231
Samu Onkalo2db4a762009-12-14 18:01:43 -0800232static int lis3lv02d_selftest(struct lis3lv02d *lis3, s16 results[3])
233{
Takashi Iwai78537c32010-09-23 10:01:39 -0700234 u8 ctlreg, reg;
Samu Onkalo2db4a762009-12-14 18:01:43 -0800235 s16 x, y, z;
236 u8 selftest;
237 int ret;
Samu Onkalo029756d2010-10-22 07:57:32 -0400238 u8 ctrl_reg_data;
239 unsigned char irq_cfg;
Samu Onkalo2db4a762009-12-14 18:01:43 -0800240
241 mutex_lock(&lis3->mutex);
Samu Onkalo029756d2010-10-22 07:57:32 -0400242
243 irq_cfg = lis3->irq_cfg;
244 if (lis3_dev.whoami == WAI_8B) {
245 lis3->data_ready_count[IRQ_LINE0] = 0;
246 lis3->data_ready_count[IRQ_LINE1] = 0;
247
248 /* Change interrupt cfg to data ready for selftest */
249 atomic_inc(&lis3_dev.wake_thread);
250 lis3->irq_cfg = LIS3_IRQ1_DATA_READY | LIS3_IRQ2_DATA_READY;
251 lis3->read(lis3, CTRL_REG3, &ctrl_reg_data);
252 lis3->write(lis3, CTRL_REG3, (ctrl_reg_data &
253 ~(LIS3_IRQ1_MASK | LIS3_IRQ2_MASK)) |
254 (LIS3_IRQ1_DATA_READY | LIS3_IRQ2_DATA_READY));
255 }
256
Takashi Iwai78537c32010-09-23 10:01:39 -0700257 if (lis3_dev.whoami == WAI_3DC) {
258 ctlreg = CTRL_REG4;
259 selftest = CTRL4_ST0;
260 } else {
261 ctlreg = CTRL_REG1;
262 if (lis3_dev.whoami == WAI_12B)
263 selftest = CTRL1_ST;
264 else
265 selftest = CTRL1_STP;
266 }
Samu Onkalo2db4a762009-12-14 18:01:43 -0800267
Takashi Iwai78537c32010-09-23 10:01:39 -0700268 lis3->read(lis3, ctlreg, &reg);
269 lis3->write(lis3, ctlreg, (reg | selftest));
Samu Onkalo2db4a762009-12-14 18:01:43 -0800270 msleep(lis3->pwron_delay / lis3lv02d_get_odr());
271
272 /* Read directly to avoid axis remap */
273 x = lis3->read_data(lis3, OUTX);
274 y = lis3->read_data(lis3, OUTY);
275 z = lis3->read_data(lis3, OUTZ);
276
277 /* back to normal settings */
Takashi Iwai78537c32010-09-23 10:01:39 -0700278 lis3->write(lis3, ctlreg, reg);
Samu Onkalo2db4a762009-12-14 18:01:43 -0800279 msleep(lis3->pwron_delay / lis3lv02d_get_odr());
280
281 results[0] = x - lis3->read_data(lis3, OUTX);
282 results[1] = y - lis3->read_data(lis3, OUTY);
283 results[2] = z - lis3->read_data(lis3, OUTZ);
284
285 ret = 0;
Samu Onkalo029756d2010-10-22 07:57:32 -0400286
287 if (lis3_dev.whoami == WAI_8B) {
288 /* Restore original interrupt configuration */
289 atomic_dec(&lis3_dev.wake_thread);
290 lis3->write(lis3, CTRL_REG3, ctrl_reg_data);
291 lis3->irq_cfg = irq_cfg;
292
293 if ((irq_cfg & LIS3_IRQ1_MASK) &&
294 lis3->data_ready_count[IRQ_LINE0] < 2) {
295 ret = SELFTEST_IRQ;
296 goto fail;
297 }
298
299 if ((irq_cfg & LIS3_IRQ2_MASK) &&
300 lis3->data_ready_count[IRQ_LINE1] < 2) {
301 ret = SELFTEST_IRQ;
302 goto fail;
303 }
304 }
305
Samu Onkalo2db4a762009-12-14 18:01:43 -0800306 if (lis3->pdata) {
307 int i;
308 for (i = 0; i < 3; i++) {
309 /* Check against selftest acceptance limits */
310 if ((results[i] < lis3->pdata->st_min_limits[i]) ||
311 (results[i] > lis3->pdata->st_max_limits[i])) {
Samu Onkalo029756d2010-10-22 07:57:32 -0400312 ret = SELFTEST_FAIL;
Samu Onkalo2db4a762009-12-14 18:01:43 -0800313 goto fail;
314 }
315 }
316 }
317
318 /* test passed */
319fail:
320 mutex_unlock(&lis3->mutex);
321 return ret;
322}
323
Samu Onkalof9deb412010-10-22 07:57:24 -0400324/*
325 * Order of registers in the list affects to order of the restore process.
326 * Perhaps it is a good idea to set interrupt enable register as a last one
327 * after all other configurations
328 */
329static u8 lis3_wai8_regs[] = { FF_WU_CFG_1, FF_WU_THS_1, FF_WU_DURATION_1,
330 FF_WU_CFG_2, FF_WU_THS_2, FF_WU_DURATION_2,
331 CLICK_CFG, CLICK_SRC, CLICK_THSY_X, CLICK_THSZ,
332 CLICK_TIMELIMIT, CLICK_LATENCY, CLICK_WINDOW,
333 CTRL_REG1, CTRL_REG2, CTRL_REG3};
334
335static u8 lis3_wai12_regs[] = {FF_WU_CFG, FF_WU_THS_L, FF_WU_THS_H,
336 FF_WU_DURATION, DD_CFG, DD_THSI_L, DD_THSI_H,
337 DD_THSE_L, DD_THSE_H,
338 CTRL_REG1, CTRL_REG3, CTRL_REG2};
339
340static inline void lis3_context_save(struct lis3lv02d *lis3)
341{
342 int i;
343 for (i = 0; i < lis3->regs_size; i++)
344 lis3->read(lis3, lis3->regs[i], &lis3->reg_cache[i]);
345 lis3->regs_stored = true;
346}
347
348static inline void lis3_context_restore(struct lis3lv02d *lis3)
349{
350 int i;
351 if (lis3->regs_stored)
352 for (i = 0; i < lis3->regs_size; i++)
353 lis3->write(lis3, lis3->regs[i], lis3->reg_cache[i]);
354}
355
Daniel Macka38da2e2009-03-31 15:24:32 -0700356void lis3lv02d_poweroff(struct lis3lv02d *lis3)
Pavel Machek455fbdd2008-11-12 13:27:02 -0800357{
Samu Onkalof9deb412010-10-22 07:57:24 -0400358 if (lis3->reg_ctrl)
359 lis3_context_save(lis3);
Eric Piela002ee82009-06-16 15:34:14 -0700360 /* disable X,Y,Z axis and power down */
361 lis3->write(lis3, CTRL_REG1, 0x00);
Samu Onkalof9deb412010-10-22 07:57:24 -0400362 if (lis3->reg_ctrl)
363 lis3->reg_ctrl(lis3, LIS3_REG_OFF);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800364}
Eric Pielcfce41a2009-01-09 16:41:01 -0800365EXPORT_SYMBOL_GPL(lis3lv02d_poweroff);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800366
Daniel Macka38da2e2009-03-31 15:24:32 -0700367void lis3lv02d_poweron(struct lis3lv02d *lis3)
Pavel Machek455fbdd2008-11-12 13:27:02 -0800368{
Eric Piela002ee82009-06-16 15:34:14 -0700369 u8 reg;
370
371 lis3->init(lis3);
372
373 /*
374 * Common configuration
Éric Piel4b5d95b2009-12-14 18:01:40 -0800375 * BDU: (12 bits sensors only) LSB and MSB values are not updated until
376 * both have been read. So the value read will always be correct.
Samu Onkalo2a7fade2010-10-22 07:57:27 -0400377 * Set BOOT bit to refresh factory tuning values.
Eric Piela002ee82009-06-16 15:34:14 -0700378 */
Samu Onkalo2a7fade2010-10-22 07:57:27 -0400379 lis3->read(lis3, CTRL_REG2, &reg);
380 if (lis3->whoami == WAI_12B)
381 reg |= CTRL2_BDU | CTRL2_BOOT;
382 else
383 reg |= CTRL2_BOOT_8B;
384 lis3->write(lis3, CTRL_REG2, reg);
385
386 /* LIS3 power on delay is quite long */
387 msleep(lis3->pwron_delay / lis3lv02d_get_odr());
388
Samu Onkalof9deb412010-10-22 07:57:24 -0400389 if (lis3->reg_ctrl)
390 lis3_context_restore(lis3);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800391}
Eric Pielcfce41a2009-01-09 16:41:01 -0800392EXPORT_SYMBOL_GPL(lis3lv02d_poweron);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800393
Pavel Machek455fbdd2008-11-12 13:27:02 -0800394
Samu Onkalo6d94d402010-05-24 14:33:37 -0700395static void lis3lv02d_joystick_poll(struct input_polled_dev *pidev)
396{
397 int x, y, z;
398
399 mutex_lock(&lis3_dev.mutex);
400 lis3lv02d_get_xyz(&lis3_dev, &x, &y, &z);
401 input_report_abs(pidev->input, ABS_X, x);
402 input_report_abs(pidev->input, ABS_Y, y);
403 input_report_abs(pidev->input, ABS_Z, z);
404 input_sync(pidev->input);
405 mutex_unlock(&lis3_dev.mutex);
406}
407
Samu Onkalo2a346992010-10-22 07:57:23 -0400408static void lis3lv02d_joystick_open(struct input_polled_dev *pidev)
409{
410 if (lis3_dev.pm_dev)
411 pm_runtime_get_sync(lis3_dev.pm_dev);
Samu Onkaloe7261112010-10-22 07:57:25 -0400412
413 if (lis3_dev.pdata && lis3_dev.whoami == WAI_8B && lis3_dev.idev)
414 atomic_set(&lis3_dev.wake_thread, 1);
Samu Onkalo821f6642010-10-22 07:57:26 -0400415 /*
416 * Update coordinates for the case where poll interval is 0 and
417 * the chip in running purely under interrupt control
418 */
419 lis3lv02d_joystick_poll(pidev);
Samu Onkalo2a346992010-10-22 07:57:23 -0400420}
421
422static void lis3lv02d_joystick_close(struct input_polled_dev *pidev)
423{
Samu Onkaloe7261112010-10-22 07:57:25 -0400424 atomic_set(&lis3_dev.wake_thread, 0);
Samu Onkalo2a346992010-10-22 07:57:23 -0400425 if (lis3_dev.pm_dev)
426 pm_runtime_put(lis3_dev.pm_dev);
427}
428
Pavel Machekef2cfc72009-02-18 14:48:23 -0800429static irqreturn_t lis302dl_interrupt(int irq, void *dummy)
430{
Samu Onkalo92ba4fe2010-05-24 14:33:36 -0700431 if (!test_bit(0, &lis3_dev.misc_opened))
432 goto out;
433
Pavel Machekef2cfc72009-02-18 14:48:23 -0800434 /*
435 * Be careful: on some HP laptops the bios force DD when on battery and
436 * the lid is closed. This leads to interrupts as soon as a little move
437 * is done.
438 */
Pavel Machekbe84cfc2009-03-31 15:24:26 -0700439 atomic_inc(&lis3_dev.count);
Pavel Machekef2cfc72009-02-18 14:48:23 -0800440
Pavel Machekbe84cfc2009-03-31 15:24:26 -0700441 wake_up_interruptible(&lis3_dev.misc_wait);
442 kill_fasync(&lis3_dev.async_queue, SIGIO, POLL_IN);
Samu Onkalo92ba4fe2010-05-24 14:33:36 -0700443out:
Samu Onkaloe7261112010-10-22 07:57:25 -0400444 if (atomic_read(&lis3_dev.wake_thread))
Samu Onkalo92ba4fe2010-05-24 14:33:36 -0700445 return IRQ_WAKE_THREAD;
446 return IRQ_HANDLED;
447}
448
Samu Onkalo6d94d402010-05-24 14:33:37 -0700449static void lis302dl_interrupt_handle_click(struct lis3lv02d *lis3)
450{
451 struct input_dev *dev = lis3->idev->input;
452 u8 click_src;
453
454 mutex_lock(&lis3->mutex);
455 lis3->read(lis3, CLICK_SRC, &click_src);
456
457 if (click_src & CLICK_SINGLE_X) {
458 input_report_key(dev, lis3->mapped_btns[0], 1);
459 input_report_key(dev, lis3->mapped_btns[0], 0);
460 }
461
462 if (click_src & CLICK_SINGLE_Y) {
463 input_report_key(dev, lis3->mapped_btns[1], 1);
464 input_report_key(dev, lis3->mapped_btns[1], 0);
465 }
466
467 if (click_src & CLICK_SINGLE_Z) {
468 input_report_key(dev, lis3->mapped_btns[2], 1);
469 input_report_key(dev, lis3->mapped_btns[2], 0);
470 }
471 input_sync(dev);
472 mutex_unlock(&lis3->mutex);
473}
474
Samu Onkalo029756d2010-10-22 07:57:32 -0400475static inline void lis302dl_data_ready(struct lis3lv02d *lis3, int index)
476{
477 int dummy;
478
479 /* Dummy read to ack interrupt */
480 lis3lv02d_get_xyz(lis3, &dummy, &dummy, &dummy);
481 lis3->data_ready_count[index]++;
482}
483
Samu Onkalo92ba4fe2010-05-24 14:33:36 -0700484static irqreturn_t lis302dl_interrupt_thread1_8b(int irq, void *data)
485{
Samu Onkalo6d94d402010-05-24 14:33:37 -0700486 struct lis3lv02d *lis3 = data;
Samu Onkalo029756d2010-10-22 07:57:32 -0400487 u8 irq_cfg = lis3->irq_cfg & LIS3_IRQ1_MASK;
Samu Onkalo6d94d402010-05-24 14:33:37 -0700488
Samu Onkalo029756d2010-10-22 07:57:32 -0400489 if (irq_cfg == LIS3_IRQ1_CLICK)
Samu Onkalo6d94d402010-05-24 14:33:37 -0700490 lis302dl_interrupt_handle_click(lis3);
Samu Onkalo029756d2010-10-22 07:57:32 -0400491 else if (unlikely(irq_cfg == LIS3_IRQ1_DATA_READY))
492 lis302dl_data_ready(lis3, IRQ_LINE0);
Samu Onkalo6d94d402010-05-24 14:33:37 -0700493 else
Samu Onkaloe7261112010-10-22 07:57:25 -0400494 lis3lv02d_joystick_poll(lis3->idev);
Samu Onkalo6d94d402010-05-24 14:33:37 -0700495
Samu Onkalo92ba4fe2010-05-24 14:33:36 -0700496 return IRQ_HANDLED;
497}
498
499static irqreturn_t lis302dl_interrupt_thread2_8b(int irq, void *data)
500{
Samu Onkalo6d94d402010-05-24 14:33:37 -0700501 struct lis3lv02d *lis3 = data;
Samu Onkalo029756d2010-10-22 07:57:32 -0400502 u8 irq_cfg = lis3->irq_cfg & LIS3_IRQ2_MASK;
Samu Onkalo6d94d402010-05-24 14:33:37 -0700503
Samu Onkalo029756d2010-10-22 07:57:32 -0400504 if (irq_cfg == LIS3_IRQ2_CLICK)
Samu Onkalo6d94d402010-05-24 14:33:37 -0700505 lis302dl_interrupt_handle_click(lis3);
Samu Onkalo029756d2010-10-22 07:57:32 -0400506 else if (unlikely(irq_cfg == LIS3_IRQ2_DATA_READY))
507 lis302dl_data_ready(lis3, IRQ_LINE1);
Samu Onkalo6d94d402010-05-24 14:33:37 -0700508 else
Samu Onkaloe7261112010-10-22 07:57:25 -0400509 lis3lv02d_joystick_poll(lis3->idev);
Samu Onkalo6d94d402010-05-24 14:33:37 -0700510
Pavel Machekef2cfc72009-02-18 14:48:23 -0800511 return IRQ_HANDLED;
512}
513
514static int lis3lv02d_misc_open(struct inode *inode, struct file *file)
515{
Pavel Machekbe84cfc2009-03-31 15:24:26 -0700516 if (test_and_set_bit(0, &lis3_dev.misc_opened))
Pavel Machekef2cfc72009-02-18 14:48:23 -0800517 return -EBUSY; /* already open */
518
Samu Onkalo2a346992010-10-22 07:57:23 -0400519 if (lis3_dev.pm_dev)
520 pm_runtime_get_sync(lis3_dev.pm_dev);
521
Pavel Machekbe84cfc2009-03-31 15:24:26 -0700522 atomic_set(&lis3_dev.count, 0);
Pavel Machekef2cfc72009-02-18 14:48:23 -0800523 return 0;
524}
525
526static int lis3lv02d_misc_release(struct inode *inode, struct file *file)
527{
Pavel Machekbe84cfc2009-03-31 15:24:26 -0700528 fasync_helper(-1, file, 0, &lis3_dev.async_queue);
Pavel Machekbe84cfc2009-03-31 15:24:26 -0700529 clear_bit(0, &lis3_dev.misc_opened); /* release the device */
Samu Onkalo2a346992010-10-22 07:57:23 -0400530 if (lis3_dev.pm_dev)
531 pm_runtime_put(lis3_dev.pm_dev);
Pavel Machekef2cfc72009-02-18 14:48:23 -0800532 return 0;
533}
534
535static ssize_t lis3lv02d_misc_read(struct file *file, char __user *buf,
536 size_t count, loff_t *pos)
537{
538 DECLARE_WAITQUEUE(wait, current);
539 u32 data;
540 unsigned char byte_data;
541 ssize_t retval = 1;
542
543 if (count < 1)
544 return -EINVAL;
545
Pavel Machekbe84cfc2009-03-31 15:24:26 -0700546 add_wait_queue(&lis3_dev.misc_wait, &wait);
Pavel Machekef2cfc72009-02-18 14:48:23 -0800547 while (true) {
548 set_current_state(TASK_INTERRUPTIBLE);
Pavel Machekbe84cfc2009-03-31 15:24:26 -0700549 data = atomic_xchg(&lis3_dev.count, 0);
Pavel Machekef2cfc72009-02-18 14:48:23 -0800550 if (data)
551 break;
552
553 if (file->f_flags & O_NONBLOCK) {
554 retval = -EAGAIN;
555 goto out;
556 }
557
558 if (signal_pending(current)) {
559 retval = -ERESTARTSYS;
560 goto out;
561 }
562
563 schedule();
564 }
565
566 if (data < 255)
567 byte_data = data;
568 else
569 byte_data = 255;
570
571 /* make sure we are not going into copy_to_user() with
572 * TASK_INTERRUPTIBLE state */
573 set_current_state(TASK_RUNNING);
574 if (copy_to_user(buf, &byte_data, sizeof(byte_data)))
575 retval = -EFAULT;
576
577out:
578 __set_current_state(TASK_RUNNING);
Pavel Machekbe84cfc2009-03-31 15:24:26 -0700579 remove_wait_queue(&lis3_dev.misc_wait, &wait);
Pavel Machekef2cfc72009-02-18 14:48:23 -0800580
581 return retval;
582}
583
584static unsigned int lis3lv02d_misc_poll(struct file *file, poll_table *wait)
585{
Pavel Machekbe84cfc2009-03-31 15:24:26 -0700586 poll_wait(file, &lis3_dev.misc_wait, wait);
587 if (atomic_read(&lis3_dev.count))
Pavel Machekef2cfc72009-02-18 14:48:23 -0800588 return POLLIN | POLLRDNORM;
589 return 0;
590}
591
592static int lis3lv02d_misc_fasync(int fd, struct file *file, int on)
593{
Pavel Machekbe84cfc2009-03-31 15:24:26 -0700594 return fasync_helper(fd, file, on, &lis3_dev.async_queue);
Pavel Machekef2cfc72009-02-18 14:48:23 -0800595}
596
597static const struct file_operations lis3lv02d_misc_fops = {
598 .owner = THIS_MODULE,
599 .llseek = no_llseek,
600 .read = lis3lv02d_misc_read,
601 .open = lis3lv02d_misc_open,
602 .release = lis3lv02d_misc_release,
603 .poll = lis3lv02d_misc_poll,
604 .fasync = lis3lv02d_misc_fasync,
605};
606
607static struct miscdevice lis3lv02d_misc_device = {
608 .minor = MISC_DYNAMIC_MINOR,
609 .name = "freefall",
610 .fops = &lis3lv02d_misc_fops,
611};
612
Eric Pielcfce41a2009-01-09 16:41:01 -0800613int lis3lv02d_joystick_enable(void)
Pavel Machek455fbdd2008-11-12 13:27:02 -0800614{
Eric Pieldc6ea972009-06-16 15:34:15 -0700615 struct input_dev *input_dev;
Pavel Machek455fbdd2008-11-12 13:27:02 -0800616 int err;
Samu Onkalo32496c72009-12-14 18:01:46 -0800617 int max_val, fuzz, flat;
Samu Onkalo6d94d402010-05-24 14:33:37 -0700618 int btns[] = {BTN_X, BTN_Y, BTN_Z};
Pavel Machek455fbdd2008-11-12 13:27:02 -0800619
Pavel Machekbe84cfc2009-03-31 15:24:26 -0700620 if (lis3_dev.idev)
Pavel Machek455fbdd2008-11-12 13:27:02 -0800621 return -EINVAL;
622
Eric Pieldc6ea972009-06-16 15:34:15 -0700623 lis3_dev.idev = input_allocate_polled_device();
Pavel Machekbe84cfc2009-03-31 15:24:26 -0700624 if (!lis3_dev.idev)
Pavel Machek455fbdd2008-11-12 13:27:02 -0800625 return -ENOMEM;
626
Eric Pieldc6ea972009-06-16 15:34:15 -0700627 lis3_dev.idev->poll = lis3lv02d_joystick_poll;
Samu Onkalo2a346992010-10-22 07:57:23 -0400628 lis3_dev.idev->open = lis3lv02d_joystick_open;
629 lis3_dev.idev->close = lis3lv02d_joystick_close;
Eric Pieldc6ea972009-06-16 15:34:15 -0700630 lis3_dev.idev->poll_interval = MDPS_POLL_INTERVAL;
Samu Onkalo4a70a412010-05-24 14:33:37 -0700631 lis3_dev.idev->poll_interval_min = MDPS_POLL_MIN;
632 lis3_dev.idev->poll_interval_max = MDPS_POLL_MAX;
Eric Pieldc6ea972009-06-16 15:34:15 -0700633 input_dev = lis3_dev.idev->input;
634
Eric Pieldc6ea972009-06-16 15:34:15 -0700635 input_dev->name = "ST LIS3LV02DL Accelerometer";
636 input_dev->phys = DRIVER_NAME "/input0";
637 input_dev->id.bustype = BUS_HOST;
638 input_dev->id.vendor = 0;
639 input_dev->dev.parent = &lis3_dev.pdev->dev;
Pavel Machek455fbdd2008-11-12 13:27:02 -0800640
Eric Pieldc6ea972009-06-16 15:34:15 -0700641 set_bit(EV_ABS, input_dev->evbit);
Samu Onkalo32496c72009-12-14 18:01:46 -0800642 max_val = (lis3_dev.mdps_max_val * lis3_dev.scale) / LIS3_ACCURACY;
Samu Onkalo477bc912010-10-22 07:57:30 -0400643 if (lis3_dev.whoami == WAI_12B) {
644 fuzz = LIS3_DEFAULT_FUZZ_12B;
645 flat = LIS3_DEFAULT_FLAT_12B;
646 } else {
647 fuzz = LIS3_DEFAULT_FUZZ_8B;
648 flat = LIS3_DEFAULT_FLAT_8B;
649 }
650 fuzz = (fuzz * lis3_dev.scale) / LIS3_ACCURACY;
651 flat = (flat * lis3_dev.scale) / LIS3_ACCURACY;
652
Samu Onkalo32496c72009-12-14 18:01:46 -0800653 input_set_abs_params(input_dev, ABS_X, -max_val, max_val, fuzz, flat);
654 input_set_abs_params(input_dev, ABS_Y, -max_val, max_val, fuzz, flat);
655 input_set_abs_params(input_dev, ABS_Z, -max_val, max_val, fuzz, flat);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800656
Samu Onkalo6d94d402010-05-24 14:33:37 -0700657 lis3_dev.mapped_btns[0] = lis3lv02d_get_axis(abs(lis3_dev.ac.x), btns);
658 lis3_dev.mapped_btns[1] = lis3lv02d_get_axis(abs(lis3_dev.ac.y), btns);
659 lis3_dev.mapped_btns[2] = lis3lv02d_get_axis(abs(lis3_dev.ac.z), btns);
660
Eric Pieldc6ea972009-06-16 15:34:15 -0700661 err = input_register_polled_device(lis3_dev.idev);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800662 if (err) {
Eric Pieldc6ea972009-06-16 15:34:15 -0700663 input_free_polled_device(lis3_dev.idev);
Pavel Machekbe84cfc2009-03-31 15:24:26 -0700664 lis3_dev.idev = NULL;
Pavel Machek455fbdd2008-11-12 13:27:02 -0800665 }
666
667 return err;
668}
Eric Pielcfce41a2009-01-09 16:41:01 -0800669EXPORT_SYMBOL_GPL(lis3lv02d_joystick_enable);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800670
Eric Pielcfce41a2009-01-09 16:41:01 -0800671void lis3lv02d_joystick_disable(void)
Pavel Machek455fbdd2008-11-12 13:27:02 -0800672{
Samu Onkalo92ba4fe2010-05-24 14:33:36 -0700673 if (lis3_dev.irq)
674 free_irq(lis3_dev.irq, &lis3_dev);
675 if (lis3_dev.pdata && lis3_dev.pdata->irq2)
676 free_irq(lis3_dev.pdata->irq2, &lis3_dev);
677
Pavel Machekbe84cfc2009-03-31 15:24:26 -0700678 if (!lis3_dev.idev)
Pavel Machek455fbdd2008-11-12 13:27:02 -0800679 return;
680
Eric Pielc2884242009-06-16 15:34:13 -0700681 if (lis3_dev.irq)
682 misc_deregister(&lis3lv02d_misc_device);
Eric Pieldc6ea972009-06-16 15:34:15 -0700683 input_unregister_polled_device(lis3_dev.idev);
Samu Onkalo66c85692009-12-14 18:01:39 -0800684 input_free_polled_device(lis3_dev.idev);
Pavel Machekbe84cfc2009-03-31 15:24:26 -0700685 lis3_dev.idev = NULL;
Pavel Machek455fbdd2008-11-12 13:27:02 -0800686}
Eric Pielcfce41a2009-01-09 16:41:01 -0800687EXPORT_SYMBOL_GPL(lis3lv02d_joystick_disable);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800688
Pavel Machek455fbdd2008-11-12 13:27:02 -0800689/* Sysfs stuff */
Samu Onkalo2a346992010-10-22 07:57:23 -0400690static void lis3lv02d_sysfs_poweron(struct lis3lv02d *lis3)
691{
692 /*
693 * SYSFS functions are fast visitors so put-call
694 * immediately after the get-call. However, keep
695 * chip running for a while and schedule delayed
696 * suspend. This way periodic sysfs calls doesn't
697 * suffer from relatively long power up time.
698 */
699
700 if (lis3->pm_dev) {
701 pm_runtime_get_sync(lis3->pm_dev);
702 pm_runtime_put_noidle(lis3->pm_dev);
703 pm_schedule_suspend(lis3->pm_dev, LIS3_SYSFS_POWERDOWN_DELAY);
704 }
705}
706
Samu Onkalo2db4a762009-12-14 18:01:43 -0800707static ssize_t lis3lv02d_selftest_show(struct device *dev,
708 struct device_attribute *attr, char *buf)
709{
Samu Onkalo2db4a762009-12-14 18:01:43 -0800710 s16 values[3];
711
Samu Onkalo029756d2010-10-22 07:57:32 -0400712 static const char ok[] = "OK";
713 static const char fail[] = "FAIL";
714 static const char irq[] = "FAIL_IRQ";
715 const char *res;
716
Samu Onkalo2a346992010-10-22 07:57:23 -0400717 lis3lv02d_sysfs_poweron(&lis3_dev);
Samu Onkalo029756d2010-10-22 07:57:32 -0400718 switch (lis3lv02d_selftest(&lis3_dev, values)) {
719 case SELFTEST_FAIL:
720 res = fail;
721 break;
722 case SELFTEST_IRQ:
723 res = irq;
724 break;
725 case SELFTEST_OK:
726 default:
727 res = ok;
728 break;
729 }
730 return sprintf(buf, "%s %d %d %d\n", res,
Samu Onkalo2db4a762009-12-14 18:01:43 -0800731 values[0], values[1], values[2]);
732}
733
Pavel Machek455fbdd2008-11-12 13:27:02 -0800734static ssize_t lis3lv02d_position_show(struct device *dev,
735 struct device_attribute *attr, char *buf)
736{
737 int x, y, z;
738
Samu Onkalo2a346992010-10-22 07:57:23 -0400739 lis3lv02d_sysfs_poweron(&lis3_dev);
Samu Onkalo6d94d402010-05-24 14:33:37 -0700740 mutex_lock(&lis3_dev.mutex);
Daniel Macka38da2e2009-03-31 15:24:32 -0700741 lis3lv02d_get_xyz(&lis3_dev, &x, &y, &z);
Samu Onkalo6d94d402010-05-24 14:33:37 -0700742 mutex_unlock(&lis3_dev.mutex);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800743 return sprintf(buf, "(%d,%d,%d)\n", x, y, z);
744}
745
Pavel Machek455fbdd2008-11-12 13:27:02 -0800746static ssize_t lis3lv02d_rate_show(struct device *dev,
747 struct device_attribute *attr, char *buf)
748{
Samu Onkalo2a346992010-10-22 07:57:23 -0400749 lis3lv02d_sysfs_poweron(&lis3_dev);
Samu Onkalo641615a2009-12-14 18:01:41 -0800750 return sprintf(buf, "%d\n", lis3lv02d_get_odr());
Pavel Machek455fbdd2008-11-12 13:27:02 -0800751}
752
Samu Onkaloa253aae2009-12-14 18:01:44 -0800753static ssize_t lis3lv02d_rate_set(struct device *dev,
754 struct device_attribute *attr, const char *buf,
755 size_t count)
756{
757 unsigned long rate;
758
759 if (strict_strtoul(buf, 0, &rate))
760 return -EINVAL;
761
Samu Onkalo2a346992010-10-22 07:57:23 -0400762 lis3lv02d_sysfs_poweron(&lis3_dev);
Samu Onkaloa253aae2009-12-14 18:01:44 -0800763 if (lis3lv02d_set_odr(rate))
764 return -EINVAL;
765
766 return count;
767}
768
Samu Onkalo2db4a762009-12-14 18:01:43 -0800769static DEVICE_ATTR(selftest, S_IRUSR, lis3lv02d_selftest_show, NULL);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800770static DEVICE_ATTR(position, S_IRUGO, lis3lv02d_position_show, NULL);
Samu Onkaloa253aae2009-12-14 18:01:44 -0800771static DEVICE_ATTR(rate, S_IRUGO | S_IWUSR, lis3lv02d_rate_show,
772 lis3lv02d_rate_set);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800773
774static struct attribute *lis3lv02d_attributes[] = {
Samu Onkalo2db4a762009-12-14 18:01:43 -0800775 &dev_attr_selftest.attr,
Pavel Machek455fbdd2008-11-12 13:27:02 -0800776 &dev_attr_position.attr,
Pavel Machek455fbdd2008-11-12 13:27:02 -0800777 &dev_attr_rate.attr,
778 NULL
779};
780
781static struct attribute_group lis3lv02d_attribute_group = {
782 .attrs = lis3lv02d_attributes
783};
784
Eric Pielcfce41a2009-01-09 16:41:01 -0800785
Daniel Macka38da2e2009-03-31 15:24:32 -0700786static int lis3lv02d_add_fs(struct lis3lv02d *lis3)
Pavel Machek455fbdd2008-11-12 13:27:02 -0800787{
Eric Piela002ee82009-06-16 15:34:14 -0700788 lis3->pdev = platform_device_register_simple(DRIVER_NAME, -1, NULL, 0);
789 if (IS_ERR(lis3->pdev))
790 return PTR_ERR(lis3->pdev);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800791
Eric Piela002ee82009-06-16 15:34:14 -0700792 return sysfs_create_group(&lis3->pdev->dev.kobj, &lis3lv02d_attribute_group);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800793}
794
Eric Piela002ee82009-06-16 15:34:14 -0700795int lis3lv02d_remove_fs(struct lis3lv02d *lis3)
Pavel Machek455fbdd2008-11-12 13:27:02 -0800796{
Eric Piela002ee82009-06-16 15:34:14 -0700797 sysfs_remove_group(&lis3->pdev->dev.kobj, &lis3lv02d_attribute_group);
798 platform_device_unregister(lis3->pdev);
Samu Onkalo2a346992010-10-22 07:57:23 -0400799 if (lis3->pm_dev) {
800 /* Barrier after the sysfs remove */
801 pm_runtime_barrier(lis3->pm_dev);
802
803 /* SYSFS may have left chip running. Turn off if necessary */
804 if (!pm_runtime_suspended(lis3->pm_dev))
805 lis3lv02d_poweroff(&lis3_dev);
806
807 pm_runtime_disable(lis3->pm_dev);
808 pm_runtime_set_suspended(lis3->pm_dev);
809 }
Samu Onkalof9deb412010-10-22 07:57:24 -0400810 kfree(lis3->reg_cache);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800811 return 0;
812}
Eric Pielcfce41a2009-01-09 16:41:01 -0800813EXPORT_SYMBOL_GPL(lis3lv02d_remove_fs);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800814
Samu Onkaloecc437a2010-05-24 14:33:34 -0700815static void lis3lv02d_8b_configure(struct lis3lv02d *dev,
816 struct lis3lv02d_platform_data *p)
817{
Samu Onkalo92ba4fe2010-05-24 14:33:36 -0700818 int err;
Samu Onkalo342c5f12010-05-24 14:33:35 -0700819 int ctrl2 = p->hipass_ctrl;
820
Samu Onkaloecc437a2010-05-24 14:33:34 -0700821 if (p->click_flags) {
822 dev->write(dev, CLICK_CFG, p->click_flags);
823 dev->write(dev, CLICK_TIMELIMIT, p->click_time_limit);
824 dev->write(dev, CLICK_LATENCY, p->click_latency);
825 dev->write(dev, CLICK_WINDOW, p->click_window);
826 dev->write(dev, CLICK_THSZ, p->click_thresh_z & 0xf);
827 dev->write(dev, CLICK_THSY_X,
828 (p->click_thresh_x & 0xf) |
829 (p->click_thresh_y << 4));
Samu Onkalo6d94d402010-05-24 14:33:37 -0700830
831 if (dev->idev) {
832 struct input_dev *input_dev = lis3_dev.idev->input;
833 input_set_capability(input_dev, EV_KEY, BTN_X);
834 input_set_capability(input_dev, EV_KEY, BTN_Y);
835 input_set_capability(input_dev, EV_KEY, BTN_Z);
836 }
Samu Onkaloecc437a2010-05-24 14:33:34 -0700837 }
838
839 if (p->wakeup_flags) {
840 dev->write(dev, FF_WU_CFG_1, p->wakeup_flags);
841 dev->write(dev, FF_WU_THS_1, p->wakeup_thresh & 0x7f);
Samu Onkalocc23aa12010-10-22 07:57:29 -0400842 /* pdata value + 1 to keep this backward compatible*/
843 dev->write(dev, FF_WU_DURATION_1, p->duration1 + 1);
Samu Onkalo342c5f12010-05-24 14:33:35 -0700844 ctrl2 ^= HP_FF_WU1; /* Xor to keep compatible with old pdata*/
Samu Onkaloecc437a2010-05-24 14:33:34 -0700845 }
Samu Onkalo342c5f12010-05-24 14:33:35 -0700846
847 if (p->wakeup_flags2) {
848 dev->write(dev, FF_WU_CFG_2, p->wakeup_flags2);
849 dev->write(dev, FF_WU_THS_2, p->wakeup_thresh2 & 0x7f);
Samu Onkalocc23aa12010-10-22 07:57:29 -0400850 /* pdata value + 1 to keep this backward compatible*/
851 dev->write(dev, FF_WU_DURATION_2, p->duration2 + 1);
Samu Onkalo342c5f12010-05-24 14:33:35 -0700852 ctrl2 ^= HP_FF_WU2; /* Xor to keep compatible with old pdata*/
853 }
854 /* Configure hipass filters */
855 dev->write(dev, CTRL_REG2, ctrl2);
Samu Onkalo92ba4fe2010-05-24 14:33:36 -0700856
857 if (p->irq2) {
858 err = request_threaded_irq(p->irq2,
859 NULL,
860 lis302dl_interrupt_thread2_8b,
Samu Onkalocc23aa12010-10-22 07:57:29 -0400861 IRQF_TRIGGER_RISING | IRQF_ONESHOT |
862 (p->irq_flags2 & IRQF_TRIGGER_MASK),
Samu Onkalo92ba4fe2010-05-24 14:33:36 -0700863 DRIVER_NAME, &lis3_dev);
864 if (err < 0)
Joe Perches63366d32010-10-20 06:51:40 +0000865 pr_err("No second IRQ. Limited functionality\n");
Samu Onkalo92ba4fe2010-05-24 14:33:36 -0700866 }
Samu Onkaloecc437a2010-05-24 14:33:34 -0700867}
868
Daniel Mackab337a62009-03-31 15:24:31 -0700869/*
870 * Initialise the accelerometer and the various subsystems.
Éric Pielbc62c142009-12-14 18:01:39 -0800871 * Should be rather independent of the bus system.
Daniel Mackab337a62009-03-31 15:24:31 -0700872 */
Daniel Macka38da2e2009-03-31 15:24:32 -0700873int lis3lv02d_init_device(struct lis3lv02d *dev)
Daniel Mackab337a62009-03-31 15:24:31 -0700874{
Samu Onkalo92ba4fe2010-05-24 14:33:36 -0700875 int err;
876 irq_handler_t thread_fn;
Samu Onkalocc23aa12010-10-22 07:57:29 -0400877 int irq_flags = 0;
Samu Onkalo92ba4fe2010-05-24 14:33:36 -0700878
Daniel Macka38da2e2009-03-31 15:24:32 -0700879 dev->whoami = lis3lv02d_read_8(dev, WHO_AM_I);
880
881 switch (dev->whoami) {
Éric Pielbc62c142009-12-14 18:01:39 -0800882 case WAI_12B:
Joe Perches63366d32010-10-20 06:51:40 +0000883 pr_info("12 bits sensor found\n");
Éric Pielbc62c142009-12-14 18:01:39 -0800884 dev->read_data = lis3lv02d_read_12;
Daniel Macka38da2e2009-03-31 15:24:32 -0700885 dev->mdps_max_val = 2048;
Samu Onkalo641615a2009-12-14 18:01:41 -0800886 dev->pwron_delay = LIS3_PWRON_DELAY_WAI_12B;
Samu Onkaloa253aae2009-12-14 18:01:44 -0800887 dev->odrs = lis3_12_rates;
888 dev->odr_mask = CTRL1_DF0 | CTRL1_DF1;
Samu Onkalo32496c72009-12-14 18:01:46 -0800889 dev->scale = LIS3_SENSITIVITY_12B;
Samu Onkalof9deb412010-10-22 07:57:24 -0400890 dev->regs = lis3_wai12_regs;
891 dev->regs_size = ARRAY_SIZE(lis3_wai12_regs);
Daniel Macka38da2e2009-03-31 15:24:32 -0700892 break;
Éric Pielbc62c142009-12-14 18:01:39 -0800893 case WAI_8B:
Joe Perches63366d32010-10-20 06:51:40 +0000894 pr_info("8 bits sensor found\n");
Daniel Macka38da2e2009-03-31 15:24:32 -0700895 dev->read_data = lis3lv02d_read_8;
896 dev->mdps_max_val = 128;
Samu Onkalo641615a2009-12-14 18:01:41 -0800897 dev->pwron_delay = LIS3_PWRON_DELAY_WAI_8B;
Samu Onkaloa253aae2009-12-14 18:01:44 -0800898 dev->odrs = lis3_8_rates;
899 dev->odr_mask = CTRL1_DR;
Samu Onkalo32496c72009-12-14 18:01:46 -0800900 dev->scale = LIS3_SENSITIVITY_8B;
Samu Onkalof9deb412010-10-22 07:57:24 -0400901 dev->regs = lis3_wai8_regs;
902 dev->regs_size = ARRAY_SIZE(lis3_wai8_regs);
Daniel Macka38da2e2009-03-31 15:24:32 -0700903 break;
Takashi Iwai78537c32010-09-23 10:01:39 -0700904 case WAI_3DC:
Joe Perches63366d32010-10-20 06:51:40 +0000905 pr_info("8 bits 3DC sensor found\n");
Takashi Iwai78537c32010-09-23 10:01:39 -0700906 dev->read_data = lis3lv02d_read_8;
907 dev->mdps_max_val = 128;
908 dev->pwron_delay = LIS3_PWRON_DELAY_WAI_8B;
909 dev->odrs = lis3_3dc_rates;
910 dev->odr_mask = CTRL1_ODR0|CTRL1_ODR1|CTRL1_ODR2|CTRL1_ODR3;
911 dev->scale = LIS3_SENSITIVITY_8B;
912 break;
Daniel Macka38da2e2009-03-31 15:24:32 -0700913 default:
Joe Perches63366d32010-10-20 06:51:40 +0000914 pr_err("unknown sensor type 0x%X\n", dev->whoami);
Daniel Macka38da2e2009-03-31 15:24:32 -0700915 return -EINVAL;
916 }
917
Samu Onkalof9deb412010-10-22 07:57:24 -0400918 dev->reg_cache = kzalloc(max(sizeof(lis3_wai8_regs),
919 sizeof(lis3_wai12_regs)), GFP_KERNEL);
920
921 if (dev->reg_cache == NULL) {
922 printk(KERN_ERR DRIVER_NAME "out of memory\n");
923 return -ENOMEM;
924 }
925
Samu Onkalo2db4a762009-12-14 18:01:43 -0800926 mutex_init(&dev->mutex);
Samu Onkaloe7261112010-10-22 07:57:25 -0400927 atomic_set(&dev->wake_thread, 0);
Samu Onkalo2db4a762009-12-14 18:01:43 -0800928
Daniel Macka38da2e2009-03-31 15:24:32 -0700929 lis3lv02d_add_fs(dev);
Eric Piela002ee82009-06-16 15:34:14 -0700930 lis3lv02d_poweron(dev);
Daniel Mackab337a62009-03-31 15:24:31 -0700931
Samu Onkalo2a346992010-10-22 07:57:23 -0400932 if (dev->pm_dev) {
933 pm_runtime_set_active(dev->pm_dev);
934 pm_runtime_enable(dev->pm_dev);
935 }
936
Daniel Mackab337a62009-03-31 15:24:31 -0700937 if (lis3lv02d_joystick_enable())
Joe Perches63366d32010-10-20 06:51:40 +0000938 pr_err("joystick initialization failed\n");
Daniel Mackab337a62009-03-31 15:24:31 -0700939
Daniel Mack8f3128e2009-06-16 15:34:17 -0700940 /* passing in platform specific data is purely optional and only
941 * used by the SPI transport layer at the moment */
942 if (dev->pdata) {
943 struct lis3lv02d_platform_data *p = dev->pdata;
944
Samu Onkaloecc437a2010-05-24 14:33:34 -0700945 if (dev->whoami == WAI_8B)
946 lis3lv02d_8b_configure(dev, p);
Daniel Mack8873c332009-09-21 17:04:43 -0700947
Samu Onkalocc23aa12010-10-22 07:57:29 -0400948 irq_flags = p->irq_flags1 & IRQF_TRIGGER_MASK;
949
Samu Onkaloe7261112010-10-22 07:57:25 -0400950 dev->irq_cfg = p->irq_cfg;
Daniel Mack8f3128e2009-06-16 15:34:17 -0700951 if (p->irq_cfg)
952 dev->write(dev, CTRL_REG3, p->irq_cfg);
Samu Onkalocc23aa12010-10-22 07:57:29 -0400953
954 if (p->default_rate)
955 lis3lv02d_set_odr(p->default_rate);
Daniel Mack8f3128e2009-06-16 15:34:17 -0700956 }
957
Daniel Macka38da2e2009-03-31 15:24:32 -0700958 /* bail if we did not get an IRQ from the bus layer */
Daniel Mackab337a62009-03-31 15:24:31 -0700959 if (!dev->irq) {
Joe Perches63366d32010-10-20 06:51:40 +0000960 pr_err("No IRQ. Disabling /dev/freefall\n");
Daniel Mackab337a62009-03-31 15:24:31 -0700961 goto out;
962 }
963
Samu Onkalo92ba4fe2010-05-24 14:33:36 -0700964 /*
965 * The sensor can generate interrupts for free-fall and direction
966 * detection (distinguishable with FF_WU_SRC and DD_SRC) but to keep
967 * the things simple and _fast_ we activate it only for free-fall, so
968 * no need to read register (very slow with ACPI). For the same reason,
969 * we forbid shared interrupts.
970 *
971 * IRQF_TRIGGER_RISING seems pointless on HP laptops because the
972 * io-apic is not configurable (and generates a warning) but I keep it
973 * in case of support for other hardware.
974 */
Takashi Iwaif7c77a32010-09-23 10:01:11 -0700975 if (dev->pdata && dev->whoami == WAI_8B)
Samu Onkalo92ba4fe2010-05-24 14:33:36 -0700976 thread_fn = lis302dl_interrupt_thread1_8b;
977 else
978 thread_fn = NULL;
979
980 err = request_threaded_irq(dev->irq, lis302dl_interrupt,
981 thread_fn,
Samu Onkalocc23aa12010-10-22 07:57:29 -0400982 IRQF_TRIGGER_RISING | IRQF_ONESHOT |
983 irq_flags,
Samu Onkalo92ba4fe2010-05-24 14:33:36 -0700984 DRIVER_NAME, &lis3_dev);
985
986 if (err < 0) {
Joe Perches63366d32010-10-20 06:51:40 +0000987 pr_err("Cannot get IRQ\n");
Samu Onkalo92ba4fe2010-05-24 14:33:36 -0700988 goto out;
989 }
990
Daniel Mackab337a62009-03-31 15:24:31 -0700991 if (misc_register(&lis3lv02d_misc_device))
Joe Perches63366d32010-10-20 06:51:40 +0000992 pr_err("misc_register failed\n");
Daniel Mackab337a62009-03-31 15:24:31 -0700993out:
Daniel Mackab337a62009-03-31 15:24:31 -0700994 return 0;
995}
996EXPORT_SYMBOL_GPL(lis3lv02d_init_device);
997
Pavel Machek455fbdd2008-11-12 13:27:02 -0800998MODULE_DESCRIPTION("ST LIS3LV02Dx three-axis digital accelerometer driver");
Pavel Machekef2cfc72009-02-18 14:48:23 -0800999MODULE_AUTHOR("Yan Burman, Eric Piel, Pavel Machek");
Pavel Machek455fbdd2008-11-12 13:27:02 -08001000MODULE_LICENSE("GPL");