blob: 1fc671566562c8f94e0c79b6af806e339d616f8c [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>
Jean Delvareff606672011-03-21 17:59:36 +010041#include <linux/atomic.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
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};
Pavel Machekbe84cfc2009-03-31 15:24:26 -070091EXPORT_SYMBOL_GPL(lis3_dev);
Pavel Machek455fbdd2008-11-12 13:27:02 -080092
Takashi Iwai2ee32142010-10-01 17:14:25 -040093/* just like param_set_int() but does sanity-check so that it won't point
94 * over the axis array size
95 */
96static int param_set_axis(const char *val, const struct kernel_param *kp)
97{
98 int ret = param_set_int(val, kp);
99 if (!ret) {
100 int val = *(int *)kp->arg;
101 if (val < 0)
102 val = -val;
103 if (!val || val > 3)
104 return -EINVAL;
105 }
106 return ret;
107}
108
109static struct kernel_param_ops param_ops_axis = {
110 .set = param_set_axis,
111 .get = param_get_int,
112};
113
114module_param_array_named(axes, lis3_dev.ac.as_array, axis, NULL, 0644);
115MODULE_PARM_DESC(axes, "Axis-mapping for x,y,z directions");
116
Daniel Macka38da2e2009-03-31 15:24:32 -0700117static s16 lis3lv02d_read_8(struct lis3lv02d *lis3, int reg)
118{
119 s8 lo;
120 if (lis3->read(lis3, reg, &lo) < 0)
121 return 0;
122
123 return lo;
124}
125
Éric Pielbc62c142009-12-14 18:01:39 -0800126static s16 lis3lv02d_read_12(struct lis3lv02d *lis3, int reg)
Pavel Machekbe84cfc2009-03-31 15:24:26 -0700127{
128 u8 lo, hi;
129
Daniel Macka38da2e2009-03-31 15:24:32 -0700130 lis3->read(lis3, reg - 1, &lo);
131 lis3->read(lis3, reg, &hi);
Pavel Machekbe84cfc2009-03-31 15:24:26 -0700132 /* In "12 bit right justified" mode, bit 6, bit 7, bit 8 = bit 5 */
133 return (s16)((hi << 8) | lo);
134}
135
Pavel Machek455fbdd2008-11-12 13:27:02 -0800136/**
137 * lis3lv02d_get_axis - For the given axis, give the value converted
138 * @axis: 1,2,3 - can also be negative
139 * @hw_values: raw values returned by the hardware
140 *
141 * Returns the converted value.
142 */
143static inline int lis3lv02d_get_axis(s8 axis, int hw_values[3])
144{
145 if (axis > 0)
146 return hw_values[axis - 1];
147 else
148 return -hw_values[-axis - 1];
149}
150
151/**
152 * lis3lv02d_get_xyz - Get X, Y and Z axis values from the accelerometer
Daniel Macka38da2e2009-03-31 15:24:32 -0700153 * @lis3: pointer to the device struct
154 * @x: where to store the X axis value
155 * @y: where to store the Y axis value
156 * @z: where to store the Z axis value
Pavel Machek455fbdd2008-11-12 13:27:02 -0800157 *
158 * Note that 40Hz input device can eat up about 10% CPU at 800MHZ
159 */
Daniel Macka38da2e2009-03-31 15:24:32 -0700160static void lis3lv02d_get_xyz(struct lis3lv02d *lis3, int *x, int *y, int *z)
Pavel Machek455fbdd2008-11-12 13:27:02 -0800161{
162 int position[3];
Samu Onkalo32496c72009-12-14 18:01:46 -0800163 int i;
Pavel Machek455fbdd2008-11-12 13:27:02 -0800164
Samu Onkalof10a5402010-10-22 07:57:31 -0400165 if (lis3->blkread) {
166 if (lis3_dev.whoami == WAI_12B) {
167 u16 data[3];
168 lis3->blkread(lis3, OUTX_L, 6, (u8 *)data);
169 for (i = 0; i < 3; i++)
170 position[i] = (s16)le16_to_cpu(data[i]);
171 } else {
172 u8 data[5];
173 /* Data: x, dummy, y, dummy, z */
174 lis3->blkread(lis3, OUTX, 5, data);
175 for (i = 0; i < 3; i++)
176 position[i] = (s8)data[i * 2];
177 }
178 } else {
179 position[0] = lis3->read_data(lis3, OUTX);
180 position[1] = lis3->read_data(lis3, OUTY);
181 position[2] = lis3->read_data(lis3, OUTZ);
182 }
Pavel Machek455fbdd2008-11-12 13:27:02 -0800183
Samu Onkalo32496c72009-12-14 18:01:46 -0800184 for (i = 0; i < 3; i++)
185 position[i] = (position[i] * lis3->scale) / LIS3_ACCURACY;
186
Eric Piela002ee82009-06-16 15:34:14 -0700187 *x = lis3lv02d_get_axis(lis3->ac.x, position);
188 *y = lis3lv02d_get_axis(lis3->ac.y, position);
189 *z = lis3lv02d_get_axis(lis3->ac.z, position);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800190}
191
Samu Onkalo641615a2009-12-14 18:01:41 -0800192/* conversion btw sampling rate and the register values */
193static int lis3_12_rates[4] = {40, 160, 640, 2560};
194static int lis3_8_rates[2] = {100, 400};
Takashi Iwai78537c32010-09-23 10:01:39 -0700195static int lis3_3dc_rates[16] = {0, 1, 10, 25, 50, 100, 200, 400, 1600, 5000};
Samu Onkalo641615a2009-12-14 18:01:41 -0800196
Samu Onkaloa253aae2009-12-14 18:01:44 -0800197/* ODR is Output Data Rate */
Samu Onkalo641615a2009-12-14 18:01:41 -0800198static int lis3lv02d_get_odr(void)
199{
200 u8 ctrl;
Samu Onkaloa253aae2009-12-14 18:01:44 -0800201 int shift;
Samu Onkalo641615a2009-12-14 18:01:41 -0800202
203 lis3_dev.read(&lis3_dev, CTRL_REG1, &ctrl);
Samu Onkaloa253aae2009-12-14 18:01:44 -0800204 ctrl &= lis3_dev.odr_mask;
205 shift = ffs(lis3_dev.odr_mask) - 1;
206 return lis3_dev.odrs[(ctrl >> shift)];
207}
Samu Onkalo641615a2009-12-14 18:01:41 -0800208
Éric Piel1510dd52011-10-31 17:10:31 -0700209static int lis3lv02d_get_pwron_wait(struct lis3lv02d *lis3)
210{
211 int div = lis3lv02d_get_odr();
212
213 if (WARN_ONCE(div == 0, "device returned spurious data"))
214 return -ENXIO;
215
216 /* LIS3 power on delay is quite long */
217 msleep(lis3->pwron_delay / div);
218 return 0;
219}
220
Samu Onkaloa253aae2009-12-14 18:01:44 -0800221static int lis3lv02d_set_odr(int rate)
222{
223 u8 ctrl;
224 int i, len, shift;
225
Takashi Iwai78537c32010-09-23 10:01:39 -0700226 if (!rate)
227 return -EINVAL;
228
Samu Onkaloa253aae2009-12-14 18:01:44 -0800229 lis3_dev.read(&lis3_dev, CTRL_REG1, &ctrl);
230 ctrl &= ~lis3_dev.odr_mask;
231 len = 1 << hweight_long(lis3_dev.odr_mask); /* # of possible values */
232 shift = ffs(lis3_dev.odr_mask) - 1;
233
234 for (i = 0; i < len; i++)
235 if (lis3_dev.odrs[i] == rate) {
236 lis3_dev.write(&lis3_dev, CTRL_REG1,
237 ctrl | (i << shift));
238 return 0;
239 }
240 return -EINVAL;
Samu Onkalo641615a2009-12-14 18:01:41 -0800241}
242
Samu Onkalo2db4a762009-12-14 18:01:43 -0800243static int lis3lv02d_selftest(struct lis3lv02d *lis3, s16 results[3])
244{
Takashi Iwai78537c32010-09-23 10:01:39 -0700245 u8 ctlreg, reg;
Samu Onkalo2db4a762009-12-14 18:01:43 -0800246 s16 x, y, z;
247 u8 selftest;
248 int ret;
Samu Onkalo029756d2010-10-22 07:57:32 -0400249 u8 ctrl_reg_data;
250 unsigned char irq_cfg;
Samu Onkalo2db4a762009-12-14 18:01:43 -0800251
252 mutex_lock(&lis3->mutex);
Samu Onkalo029756d2010-10-22 07:57:32 -0400253
254 irq_cfg = lis3->irq_cfg;
255 if (lis3_dev.whoami == WAI_8B) {
256 lis3->data_ready_count[IRQ_LINE0] = 0;
257 lis3->data_ready_count[IRQ_LINE1] = 0;
258
259 /* Change interrupt cfg to data ready for selftest */
260 atomic_inc(&lis3_dev.wake_thread);
261 lis3->irq_cfg = LIS3_IRQ1_DATA_READY | LIS3_IRQ2_DATA_READY;
262 lis3->read(lis3, CTRL_REG3, &ctrl_reg_data);
263 lis3->write(lis3, CTRL_REG3, (ctrl_reg_data &
264 ~(LIS3_IRQ1_MASK | LIS3_IRQ2_MASK)) |
265 (LIS3_IRQ1_DATA_READY | LIS3_IRQ2_DATA_READY));
266 }
267
Takashi Iwai78537c32010-09-23 10:01:39 -0700268 if (lis3_dev.whoami == WAI_3DC) {
269 ctlreg = CTRL_REG4;
270 selftest = CTRL4_ST0;
271 } else {
272 ctlreg = CTRL_REG1;
273 if (lis3_dev.whoami == WAI_12B)
274 selftest = CTRL1_ST;
275 else
276 selftest = CTRL1_STP;
277 }
Samu Onkalo2db4a762009-12-14 18:01:43 -0800278
Takashi Iwai78537c32010-09-23 10:01:39 -0700279 lis3->read(lis3, ctlreg, &reg);
280 lis3->write(lis3, ctlreg, (reg | selftest));
Éric Piel1510dd52011-10-31 17:10:31 -0700281 ret = lis3lv02d_get_pwron_wait(lis3);
282 if (ret)
283 goto fail;
Samu Onkalo2db4a762009-12-14 18:01:43 -0800284
285 /* Read directly to avoid axis remap */
286 x = lis3->read_data(lis3, OUTX);
287 y = lis3->read_data(lis3, OUTY);
288 z = lis3->read_data(lis3, OUTZ);
289
290 /* back to normal settings */
Takashi Iwai78537c32010-09-23 10:01:39 -0700291 lis3->write(lis3, ctlreg, reg);
Éric Piel1510dd52011-10-31 17:10:31 -0700292 ret = lis3lv02d_get_pwron_wait(lis3);
293 if (ret)
294 goto fail;
Samu Onkalo2db4a762009-12-14 18:01:43 -0800295
296 results[0] = x - lis3->read_data(lis3, OUTX);
297 results[1] = y - lis3->read_data(lis3, OUTY);
298 results[2] = z - lis3->read_data(lis3, OUTZ);
299
300 ret = 0;
Samu Onkalo029756d2010-10-22 07:57:32 -0400301
302 if (lis3_dev.whoami == WAI_8B) {
303 /* Restore original interrupt configuration */
304 atomic_dec(&lis3_dev.wake_thread);
305 lis3->write(lis3, CTRL_REG3, ctrl_reg_data);
306 lis3->irq_cfg = irq_cfg;
307
308 if ((irq_cfg & LIS3_IRQ1_MASK) &&
309 lis3->data_ready_count[IRQ_LINE0] < 2) {
310 ret = SELFTEST_IRQ;
311 goto fail;
312 }
313
314 if ((irq_cfg & LIS3_IRQ2_MASK) &&
315 lis3->data_ready_count[IRQ_LINE1] < 2) {
316 ret = SELFTEST_IRQ;
317 goto fail;
318 }
319 }
320
Samu Onkalo2db4a762009-12-14 18:01:43 -0800321 if (lis3->pdata) {
322 int i;
323 for (i = 0; i < 3; i++) {
324 /* Check against selftest acceptance limits */
325 if ((results[i] < lis3->pdata->st_min_limits[i]) ||
326 (results[i] > lis3->pdata->st_max_limits[i])) {
Samu Onkalo029756d2010-10-22 07:57:32 -0400327 ret = SELFTEST_FAIL;
Samu Onkalo2db4a762009-12-14 18:01:43 -0800328 goto fail;
329 }
330 }
331 }
332
333 /* test passed */
334fail:
335 mutex_unlock(&lis3->mutex);
336 return ret;
337}
338
Samu Onkalof9deb412010-10-22 07:57:24 -0400339/*
340 * Order of registers in the list affects to order of the restore process.
341 * Perhaps it is a good idea to set interrupt enable register as a last one
342 * after all other configurations
343 */
344static u8 lis3_wai8_regs[] = { FF_WU_CFG_1, FF_WU_THS_1, FF_WU_DURATION_1,
345 FF_WU_CFG_2, FF_WU_THS_2, FF_WU_DURATION_2,
346 CLICK_CFG, CLICK_SRC, CLICK_THSY_X, CLICK_THSZ,
347 CLICK_TIMELIMIT, CLICK_LATENCY, CLICK_WINDOW,
348 CTRL_REG1, CTRL_REG2, CTRL_REG3};
349
350static u8 lis3_wai12_regs[] = {FF_WU_CFG, FF_WU_THS_L, FF_WU_THS_H,
351 FF_WU_DURATION, DD_CFG, DD_THSI_L, DD_THSI_H,
352 DD_THSE_L, DD_THSE_H,
353 CTRL_REG1, CTRL_REG3, CTRL_REG2};
354
355static inline void lis3_context_save(struct lis3lv02d *lis3)
356{
357 int i;
358 for (i = 0; i < lis3->regs_size; i++)
359 lis3->read(lis3, lis3->regs[i], &lis3->reg_cache[i]);
360 lis3->regs_stored = true;
361}
362
363static inline void lis3_context_restore(struct lis3lv02d *lis3)
364{
365 int i;
366 if (lis3->regs_stored)
367 for (i = 0; i < lis3->regs_size; i++)
368 lis3->write(lis3, lis3->regs[i], lis3->reg_cache[i]);
369}
370
Daniel Macka38da2e2009-03-31 15:24:32 -0700371void lis3lv02d_poweroff(struct lis3lv02d *lis3)
Pavel Machek455fbdd2008-11-12 13:27:02 -0800372{
Samu Onkalof9deb412010-10-22 07:57:24 -0400373 if (lis3->reg_ctrl)
374 lis3_context_save(lis3);
Eric Piela002ee82009-06-16 15:34:14 -0700375 /* disable X,Y,Z axis and power down */
376 lis3->write(lis3, CTRL_REG1, 0x00);
Samu Onkalof9deb412010-10-22 07:57:24 -0400377 if (lis3->reg_ctrl)
378 lis3->reg_ctrl(lis3, LIS3_REG_OFF);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800379}
Eric Pielcfce41a2009-01-09 16:41:01 -0800380EXPORT_SYMBOL_GPL(lis3lv02d_poweroff);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800381
Éric Piel1510dd52011-10-31 17:10:31 -0700382int lis3lv02d_poweron(struct lis3lv02d *lis3)
Pavel Machek455fbdd2008-11-12 13:27:02 -0800383{
Éric Piel1510dd52011-10-31 17:10:31 -0700384 int err;
Eric Piela002ee82009-06-16 15:34:14 -0700385 u8 reg;
386
387 lis3->init(lis3);
388
389 /*
390 * Common configuration
Éric Piel4b5d95b2009-12-14 18:01:40 -0800391 * BDU: (12 bits sensors only) LSB and MSB values are not updated until
392 * both have been read. So the value read will always be correct.
Samu Onkalo2a7fade2010-10-22 07:57:27 -0400393 * Set BOOT bit to refresh factory tuning values.
Eric Piela002ee82009-06-16 15:34:14 -0700394 */
Takashi Iwai05faadc2011-10-03 18:09:14 -0700395 if (lis3->pdata) {
396 lis3->read(lis3, CTRL_REG2, &reg);
397 if (lis3->whoami == WAI_12B)
398 reg |= CTRL2_BDU | CTRL2_BOOT;
399 else
400 reg |= CTRL2_BOOT_8B;
401 lis3->write(lis3, CTRL_REG2, reg);
402 }
Samu Onkalo2a7fade2010-10-22 07:57:27 -0400403
Éric Piel1510dd52011-10-31 17:10:31 -0700404 err = lis3lv02d_get_pwron_wait(lis3);
405 if (err)
406 return err;
Samu Onkalo2a7fade2010-10-22 07:57:27 -0400407
Samu Onkalof9deb412010-10-22 07:57:24 -0400408 if (lis3->reg_ctrl)
409 lis3_context_restore(lis3);
Éric Piel1510dd52011-10-31 17:10:31 -0700410
411 return 0;
Pavel Machek455fbdd2008-11-12 13:27:02 -0800412}
Eric Pielcfce41a2009-01-09 16:41:01 -0800413EXPORT_SYMBOL_GPL(lis3lv02d_poweron);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800414
Pavel Machek455fbdd2008-11-12 13:27:02 -0800415
Samu Onkalo6d94d402010-05-24 14:33:37 -0700416static void lis3lv02d_joystick_poll(struct input_polled_dev *pidev)
417{
418 int x, y, z;
419
420 mutex_lock(&lis3_dev.mutex);
421 lis3lv02d_get_xyz(&lis3_dev, &x, &y, &z);
422 input_report_abs(pidev->input, ABS_X, x);
423 input_report_abs(pidev->input, ABS_Y, y);
424 input_report_abs(pidev->input, ABS_Z, z);
425 input_sync(pidev->input);
426 mutex_unlock(&lis3_dev.mutex);
427}
428
Samu Onkalo2a346992010-10-22 07:57:23 -0400429static void lis3lv02d_joystick_open(struct input_polled_dev *pidev)
430{
431 if (lis3_dev.pm_dev)
432 pm_runtime_get_sync(lis3_dev.pm_dev);
Samu Onkaloe7261112010-10-22 07:57:25 -0400433
434 if (lis3_dev.pdata && lis3_dev.whoami == WAI_8B && lis3_dev.idev)
435 atomic_set(&lis3_dev.wake_thread, 1);
Samu Onkalo821f6642010-10-22 07:57:26 -0400436 /*
437 * Update coordinates for the case where poll interval is 0 and
438 * the chip in running purely under interrupt control
439 */
440 lis3lv02d_joystick_poll(pidev);
Samu Onkalo2a346992010-10-22 07:57:23 -0400441}
442
443static void lis3lv02d_joystick_close(struct input_polled_dev *pidev)
444{
Samu Onkaloe7261112010-10-22 07:57:25 -0400445 atomic_set(&lis3_dev.wake_thread, 0);
Samu Onkalo2a346992010-10-22 07:57:23 -0400446 if (lis3_dev.pm_dev)
447 pm_runtime_put(lis3_dev.pm_dev);
448}
449
Pavel Machekef2cfc72009-02-18 14:48:23 -0800450static irqreturn_t lis302dl_interrupt(int irq, void *dummy)
451{
Samu Onkalo92ba4fe2010-05-24 14:33:36 -0700452 if (!test_bit(0, &lis3_dev.misc_opened))
453 goto out;
454
Pavel Machekef2cfc72009-02-18 14:48:23 -0800455 /*
456 * Be careful: on some HP laptops the bios force DD when on battery and
457 * the lid is closed. This leads to interrupts as soon as a little move
458 * is done.
459 */
Pavel Machekbe84cfc2009-03-31 15:24:26 -0700460 atomic_inc(&lis3_dev.count);
Pavel Machekef2cfc72009-02-18 14:48:23 -0800461
Pavel Machekbe84cfc2009-03-31 15:24:26 -0700462 wake_up_interruptible(&lis3_dev.misc_wait);
463 kill_fasync(&lis3_dev.async_queue, SIGIO, POLL_IN);
Samu Onkalo92ba4fe2010-05-24 14:33:36 -0700464out:
Samu Onkaloe7261112010-10-22 07:57:25 -0400465 if (atomic_read(&lis3_dev.wake_thread))
Samu Onkalo92ba4fe2010-05-24 14:33:36 -0700466 return IRQ_WAKE_THREAD;
467 return IRQ_HANDLED;
468}
469
Samu Onkalo6d94d402010-05-24 14:33:37 -0700470static void lis302dl_interrupt_handle_click(struct lis3lv02d *lis3)
471{
472 struct input_dev *dev = lis3->idev->input;
473 u8 click_src;
474
475 mutex_lock(&lis3->mutex);
476 lis3->read(lis3, CLICK_SRC, &click_src);
477
478 if (click_src & CLICK_SINGLE_X) {
479 input_report_key(dev, lis3->mapped_btns[0], 1);
480 input_report_key(dev, lis3->mapped_btns[0], 0);
481 }
482
483 if (click_src & CLICK_SINGLE_Y) {
484 input_report_key(dev, lis3->mapped_btns[1], 1);
485 input_report_key(dev, lis3->mapped_btns[1], 0);
486 }
487
488 if (click_src & CLICK_SINGLE_Z) {
489 input_report_key(dev, lis3->mapped_btns[2], 1);
490 input_report_key(dev, lis3->mapped_btns[2], 0);
491 }
492 input_sync(dev);
493 mutex_unlock(&lis3->mutex);
494}
495
Samu Onkalo029756d2010-10-22 07:57:32 -0400496static inline void lis302dl_data_ready(struct lis3lv02d *lis3, int index)
497{
498 int dummy;
499
500 /* Dummy read to ack interrupt */
501 lis3lv02d_get_xyz(lis3, &dummy, &dummy, &dummy);
502 lis3->data_ready_count[index]++;
503}
504
Samu Onkalo92ba4fe2010-05-24 14:33:36 -0700505static irqreturn_t lis302dl_interrupt_thread1_8b(int irq, void *data)
506{
Samu Onkalo6d94d402010-05-24 14:33:37 -0700507 struct lis3lv02d *lis3 = data;
Samu Onkalo029756d2010-10-22 07:57:32 -0400508 u8 irq_cfg = lis3->irq_cfg & LIS3_IRQ1_MASK;
Samu Onkalo6d94d402010-05-24 14:33:37 -0700509
Samu Onkalo029756d2010-10-22 07:57:32 -0400510 if (irq_cfg == LIS3_IRQ1_CLICK)
Samu Onkalo6d94d402010-05-24 14:33:37 -0700511 lis302dl_interrupt_handle_click(lis3);
Samu Onkalo029756d2010-10-22 07:57:32 -0400512 else if (unlikely(irq_cfg == LIS3_IRQ1_DATA_READY))
513 lis302dl_data_ready(lis3, IRQ_LINE0);
Samu Onkalo6d94d402010-05-24 14:33:37 -0700514 else
Samu Onkaloe7261112010-10-22 07:57:25 -0400515 lis3lv02d_joystick_poll(lis3->idev);
Samu Onkalo6d94d402010-05-24 14:33:37 -0700516
Samu Onkalo92ba4fe2010-05-24 14:33:36 -0700517 return IRQ_HANDLED;
518}
519
520static irqreturn_t lis302dl_interrupt_thread2_8b(int irq, void *data)
521{
Samu Onkalo6d94d402010-05-24 14:33:37 -0700522 struct lis3lv02d *lis3 = data;
Samu Onkalo029756d2010-10-22 07:57:32 -0400523 u8 irq_cfg = lis3->irq_cfg & LIS3_IRQ2_MASK;
Samu Onkalo6d94d402010-05-24 14:33:37 -0700524
Samu Onkalo029756d2010-10-22 07:57:32 -0400525 if (irq_cfg == LIS3_IRQ2_CLICK)
Samu Onkalo6d94d402010-05-24 14:33:37 -0700526 lis302dl_interrupt_handle_click(lis3);
Samu Onkalo029756d2010-10-22 07:57:32 -0400527 else if (unlikely(irq_cfg == LIS3_IRQ2_DATA_READY))
528 lis302dl_data_ready(lis3, IRQ_LINE1);
Samu Onkalo6d94d402010-05-24 14:33:37 -0700529 else
Samu Onkaloe7261112010-10-22 07:57:25 -0400530 lis3lv02d_joystick_poll(lis3->idev);
Samu Onkalo6d94d402010-05-24 14:33:37 -0700531
Pavel Machekef2cfc72009-02-18 14:48:23 -0800532 return IRQ_HANDLED;
533}
534
535static int lis3lv02d_misc_open(struct inode *inode, struct file *file)
536{
Pavel Machekbe84cfc2009-03-31 15:24:26 -0700537 if (test_and_set_bit(0, &lis3_dev.misc_opened))
Pavel Machekef2cfc72009-02-18 14:48:23 -0800538 return -EBUSY; /* already open */
539
Samu Onkalo2a346992010-10-22 07:57:23 -0400540 if (lis3_dev.pm_dev)
541 pm_runtime_get_sync(lis3_dev.pm_dev);
542
Pavel Machekbe84cfc2009-03-31 15:24:26 -0700543 atomic_set(&lis3_dev.count, 0);
Pavel Machekef2cfc72009-02-18 14:48:23 -0800544 return 0;
545}
546
547static int lis3lv02d_misc_release(struct inode *inode, struct file *file)
548{
Pavel Machekbe84cfc2009-03-31 15:24:26 -0700549 fasync_helper(-1, file, 0, &lis3_dev.async_queue);
Pavel Machekbe84cfc2009-03-31 15:24:26 -0700550 clear_bit(0, &lis3_dev.misc_opened); /* release the device */
Samu Onkalo2a346992010-10-22 07:57:23 -0400551 if (lis3_dev.pm_dev)
552 pm_runtime_put(lis3_dev.pm_dev);
Pavel Machekef2cfc72009-02-18 14:48:23 -0800553 return 0;
554}
555
556static ssize_t lis3lv02d_misc_read(struct file *file, char __user *buf,
557 size_t count, loff_t *pos)
558{
559 DECLARE_WAITQUEUE(wait, current);
560 u32 data;
561 unsigned char byte_data;
562 ssize_t retval = 1;
563
564 if (count < 1)
565 return -EINVAL;
566
Pavel Machekbe84cfc2009-03-31 15:24:26 -0700567 add_wait_queue(&lis3_dev.misc_wait, &wait);
Pavel Machekef2cfc72009-02-18 14:48:23 -0800568 while (true) {
569 set_current_state(TASK_INTERRUPTIBLE);
Pavel Machekbe84cfc2009-03-31 15:24:26 -0700570 data = atomic_xchg(&lis3_dev.count, 0);
Pavel Machekef2cfc72009-02-18 14:48:23 -0800571 if (data)
572 break;
573
574 if (file->f_flags & O_NONBLOCK) {
575 retval = -EAGAIN;
576 goto out;
577 }
578
579 if (signal_pending(current)) {
580 retval = -ERESTARTSYS;
581 goto out;
582 }
583
584 schedule();
585 }
586
587 if (data < 255)
588 byte_data = data;
589 else
590 byte_data = 255;
591
592 /* make sure we are not going into copy_to_user() with
593 * TASK_INTERRUPTIBLE state */
594 set_current_state(TASK_RUNNING);
595 if (copy_to_user(buf, &byte_data, sizeof(byte_data)))
596 retval = -EFAULT;
597
598out:
599 __set_current_state(TASK_RUNNING);
Pavel Machekbe84cfc2009-03-31 15:24:26 -0700600 remove_wait_queue(&lis3_dev.misc_wait, &wait);
Pavel Machekef2cfc72009-02-18 14:48:23 -0800601
602 return retval;
603}
604
605static unsigned int lis3lv02d_misc_poll(struct file *file, poll_table *wait)
606{
Pavel Machekbe84cfc2009-03-31 15:24:26 -0700607 poll_wait(file, &lis3_dev.misc_wait, wait);
608 if (atomic_read(&lis3_dev.count))
Pavel Machekef2cfc72009-02-18 14:48:23 -0800609 return POLLIN | POLLRDNORM;
610 return 0;
611}
612
613static int lis3lv02d_misc_fasync(int fd, struct file *file, int on)
614{
Pavel Machekbe84cfc2009-03-31 15:24:26 -0700615 return fasync_helper(fd, file, on, &lis3_dev.async_queue);
Pavel Machekef2cfc72009-02-18 14:48:23 -0800616}
617
618static const struct file_operations lis3lv02d_misc_fops = {
619 .owner = THIS_MODULE,
620 .llseek = no_llseek,
621 .read = lis3lv02d_misc_read,
622 .open = lis3lv02d_misc_open,
623 .release = lis3lv02d_misc_release,
624 .poll = lis3lv02d_misc_poll,
625 .fasync = lis3lv02d_misc_fasync,
626};
627
628static struct miscdevice lis3lv02d_misc_device = {
629 .minor = MISC_DYNAMIC_MINOR,
630 .name = "freefall",
631 .fops = &lis3lv02d_misc_fops,
632};
633
Eric Pielcfce41a2009-01-09 16:41:01 -0800634int lis3lv02d_joystick_enable(void)
Pavel Machek455fbdd2008-11-12 13:27:02 -0800635{
Eric Pieldc6ea972009-06-16 15:34:15 -0700636 struct input_dev *input_dev;
Pavel Machek455fbdd2008-11-12 13:27:02 -0800637 int err;
Samu Onkalo32496c72009-12-14 18:01:46 -0800638 int max_val, fuzz, flat;
Samu Onkalo6d94d402010-05-24 14:33:37 -0700639 int btns[] = {BTN_X, BTN_Y, BTN_Z};
Pavel Machek455fbdd2008-11-12 13:27:02 -0800640
Pavel Machekbe84cfc2009-03-31 15:24:26 -0700641 if (lis3_dev.idev)
Pavel Machek455fbdd2008-11-12 13:27:02 -0800642 return -EINVAL;
643
Eric Pieldc6ea972009-06-16 15:34:15 -0700644 lis3_dev.idev = input_allocate_polled_device();
Pavel Machekbe84cfc2009-03-31 15:24:26 -0700645 if (!lis3_dev.idev)
Pavel Machek455fbdd2008-11-12 13:27:02 -0800646 return -ENOMEM;
647
Eric Pieldc6ea972009-06-16 15:34:15 -0700648 lis3_dev.idev->poll = lis3lv02d_joystick_poll;
Samu Onkalo2a346992010-10-22 07:57:23 -0400649 lis3_dev.idev->open = lis3lv02d_joystick_open;
650 lis3_dev.idev->close = lis3lv02d_joystick_close;
Eric Pieldc6ea972009-06-16 15:34:15 -0700651 lis3_dev.idev->poll_interval = MDPS_POLL_INTERVAL;
Samu Onkalo4a70a412010-05-24 14:33:37 -0700652 lis3_dev.idev->poll_interval_min = MDPS_POLL_MIN;
653 lis3_dev.idev->poll_interval_max = MDPS_POLL_MAX;
Eric Pieldc6ea972009-06-16 15:34:15 -0700654 input_dev = lis3_dev.idev->input;
655
Eric Pieldc6ea972009-06-16 15:34:15 -0700656 input_dev->name = "ST LIS3LV02DL Accelerometer";
657 input_dev->phys = DRIVER_NAME "/input0";
658 input_dev->id.bustype = BUS_HOST;
659 input_dev->id.vendor = 0;
660 input_dev->dev.parent = &lis3_dev.pdev->dev;
Pavel Machek455fbdd2008-11-12 13:27:02 -0800661
Eric Pieldc6ea972009-06-16 15:34:15 -0700662 set_bit(EV_ABS, input_dev->evbit);
Samu Onkalo32496c72009-12-14 18:01:46 -0800663 max_val = (lis3_dev.mdps_max_val * lis3_dev.scale) / LIS3_ACCURACY;
Samu Onkalo477bc912010-10-22 07:57:30 -0400664 if (lis3_dev.whoami == WAI_12B) {
665 fuzz = LIS3_DEFAULT_FUZZ_12B;
666 flat = LIS3_DEFAULT_FLAT_12B;
667 } else {
668 fuzz = LIS3_DEFAULT_FUZZ_8B;
669 flat = LIS3_DEFAULT_FLAT_8B;
670 }
671 fuzz = (fuzz * lis3_dev.scale) / LIS3_ACCURACY;
672 flat = (flat * lis3_dev.scale) / LIS3_ACCURACY;
673
Samu Onkalo32496c72009-12-14 18:01:46 -0800674 input_set_abs_params(input_dev, ABS_X, -max_val, max_val, fuzz, flat);
675 input_set_abs_params(input_dev, ABS_Y, -max_val, max_val, fuzz, flat);
676 input_set_abs_params(input_dev, ABS_Z, -max_val, max_val, fuzz, flat);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800677
Samu Onkalo6d94d402010-05-24 14:33:37 -0700678 lis3_dev.mapped_btns[0] = lis3lv02d_get_axis(abs(lis3_dev.ac.x), btns);
679 lis3_dev.mapped_btns[1] = lis3lv02d_get_axis(abs(lis3_dev.ac.y), btns);
680 lis3_dev.mapped_btns[2] = lis3lv02d_get_axis(abs(lis3_dev.ac.z), btns);
681
Eric Pieldc6ea972009-06-16 15:34:15 -0700682 err = input_register_polled_device(lis3_dev.idev);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800683 if (err) {
Eric Pieldc6ea972009-06-16 15:34:15 -0700684 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 }
687
688 return err;
689}
Eric Pielcfce41a2009-01-09 16:41:01 -0800690EXPORT_SYMBOL_GPL(lis3lv02d_joystick_enable);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800691
Eric Pielcfce41a2009-01-09 16:41:01 -0800692void lis3lv02d_joystick_disable(void)
Pavel Machek455fbdd2008-11-12 13:27:02 -0800693{
Samu Onkalo92ba4fe2010-05-24 14:33:36 -0700694 if (lis3_dev.irq)
695 free_irq(lis3_dev.irq, &lis3_dev);
696 if (lis3_dev.pdata && lis3_dev.pdata->irq2)
697 free_irq(lis3_dev.pdata->irq2, &lis3_dev);
698
Pavel Machekbe84cfc2009-03-31 15:24:26 -0700699 if (!lis3_dev.idev)
Pavel Machek455fbdd2008-11-12 13:27:02 -0800700 return;
701
Eric Pielc2884242009-06-16 15:34:13 -0700702 if (lis3_dev.irq)
703 misc_deregister(&lis3lv02d_misc_device);
Eric Pieldc6ea972009-06-16 15:34:15 -0700704 input_unregister_polled_device(lis3_dev.idev);
Samu Onkalo66c85692009-12-14 18:01:39 -0800705 input_free_polled_device(lis3_dev.idev);
Pavel Machekbe84cfc2009-03-31 15:24:26 -0700706 lis3_dev.idev = NULL;
Pavel Machek455fbdd2008-11-12 13:27:02 -0800707}
Eric Pielcfce41a2009-01-09 16:41:01 -0800708EXPORT_SYMBOL_GPL(lis3lv02d_joystick_disable);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800709
Pavel Machek455fbdd2008-11-12 13:27:02 -0800710/* Sysfs stuff */
Samu Onkalo2a346992010-10-22 07:57:23 -0400711static void lis3lv02d_sysfs_poweron(struct lis3lv02d *lis3)
712{
713 /*
714 * SYSFS functions are fast visitors so put-call
715 * immediately after the get-call. However, keep
716 * chip running for a while and schedule delayed
717 * suspend. This way periodic sysfs calls doesn't
718 * suffer from relatively long power up time.
719 */
720
721 if (lis3->pm_dev) {
722 pm_runtime_get_sync(lis3->pm_dev);
723 pm_runtime_put_noidle(lis3->pm_dev);
724 pm_schedule_suspend(lis3->pm_dev, LIS3_SYSFS_POWERDOWN_DELAY);
725 }
726}
727
Samu Onkalo2db4a762009-12-14 18:01:43 -0800728static ssize_t lis3lv02d_selftest_show(struct device *dev,
729 struct device_attribute *attr, char *buf)
730{
Samu Onkalo2db4a762009-12-14 18:01:43 -0800731 s16 values[3];
732
Samu Onkalo029756d2010-10-22 07:57:32 -0400733 static const char ok[] = "OK";
734 static const char fail[] = "FAIL";
735 static const char irq[] = "FAIL_IRQ";
736 const char *res;
737
Samu Onkalo2a346992010-10-22 07:57:23 -0400738 lis3lv02d_sysfs_poweron(&lis3_dev);
Samu Onkalo029756d2010-10-22 07:57:32 -0400739 switch (lis3lv02d_selftest(&lis3_dev, values)) {
740 case SELFTEST_FAIL:
741 res = fail;
742 break;
743 case SELFTEST_IRQ:
744 res = irq;
745 break;
746 case SELFTEST_OK:
747 default:
748 res = ok;
749 break;
750 }
751 return sprintf(buf, "%s %d %d %d\n", res,
Samu Onkalo2db4a762009-12-14 18:01:43 -0800752 values[0], values[1], values[2]);
753}
754
Pavel Machek455fbdd2008-11-12 13:27:02 -0800755static ssize_t lis3lv02d_position_show(struct device *dev,
756 struct device_attribute *attr, char *buf)
757{
758 int x, y, z;
759
Samu Onkalo2a346992010-10-22 07:57:23 -0400760 lis3lv02d_sysfs_poweron(&lis3_dev);
Samu Onkalo6d94d402010-05-24 14:33:37 -0700761 mutex_lock(&lis3_dev.mutex);
Daniel Macka38da2e2009-03-31 15:24:32 -0700762 lis3lv02d_get_xyz(&lis3_dev, &x, &y, &z);
Samu Onkalo6d94d402010-05-24 14:33:37 -0700763 mutex_unlock(&lis3_dev.mutex);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800764 return sprintf(buf, "(%d,%d,%d)\n", x, y, z);
765}
766
Pavel Machek455fbdd2008-11-12 13:27:02 -0800767static ssize_t lis3lv02d_rate_show(struct device *dev,
768 struct device_attribute *attr, char *buf)
769{
Samu Onkalo2a346992010-10-22 07:57:23 -0400770 lis3lv02d_sysfs_poweron(&lis3_dev);
Samu Onkalo641615a2009-12-14 18:01:41 -0800771 return sprintf(buf, "%d\n", lis3lv02d_get_odr());
Pavel Machek455fbdd2008-11-12 13:27:02 -0800772}
773
Samu Onkaloa253aae2009-12-14 18:01:44 -0800774static ssize_t lis3lv02d_rate_set(struct device *dev,
775 struct device_attribute *attr, const char *buf,
776 size_t count)
777{
778 unsigned long rate;
779
780 if (strict_strtoul(buf, 0, &rate))
781 return -EINVAL;
782
Samu Onkalo2a346992010-10-22 07:57:23 -0400783 lis3lv02d_sysfs_poweron(&lis3_dev);
Samu Onkaloa253aae2009-12-14 18:01:44 -0800784 if (lis3lv02d_set_odr(rate))
785 return -EINVAL;
786
787 return count;
788}
789
Samu Onkalo2db4a762009-12-14 18:01:43 -0800790static DEVICE_ATTR(selftest, S_IRUSR, lis3lv02d_selftest_show, NULL);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800791static DEVICE_ATTR(position, S_IRUGO, lis3lv02d_position_show, NULL);
Samu Onkaloa253aae2009-12-14 18:01:44 -0800792static DEVICE_ATTR(rate, S_IRUGO | S_IWUSR, lis3lv02d_rate_show,
793 lis3lv02d_rate_set);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800794
795static struct attribute *lis3lv02d_attributes[] = {
Samu Onkalo2db4a762009-12-14 18:01:43 -0800796 &dev_attr_selftest.attr,
Pavel Machek455fbdd2008-11-12 13:27:02 -0800797 &dev_attr_position.attr,
Pavel Machek455fbdd2008-11-12 13:27:02 -0800798 &dev_attr_rate.attr,
799 NULL
800};
801
802static struct attribute_group lis3lv02d_attribute_group = {
803 .attrs = lis3lv02d_attributes
804};
805
Eric Pielcfce41a2009-01-09 16:41:01 -0800806
Daniel Macka38da2e2009-03-31 15:24:32 -0700807static int lis3lv02d_add_fs(struct lis3lv02d *lis3)
Pavel Machek455fbdd2008-11-12 13:27:02 -0800808{
Eric Piela002ee82009-06-16 15:34:14 -0700809 lis3->pdev = platform_device_register_simple(DRIVER_NAME, -1, NULL, 0);
810 if (IS_ERR(lis3->pdev))
811 return PTR_ERR(lis3->pdev);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800812
Eric Piela002ee82009-06-16 15:34:14 -0700813 return sysfs_create_group(&lis3->pdev->dev.kobj, &lis3lv02d_attribute_group);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800814}
815
Eric Piela002ee82009-06-16 15:34:14 -0700816int lis3lv02d_remove_fs(struct lis3lv02d *lis3)
Pavel Machek455fbdd2008-11-12 13:27:02 -0800817{
Eric Piela002ee82009-06-16 15:34:14 -0700818 sysfs_remove_group(&lis3->pdev->dev.kobj, &lis3lv02d_attribute_group);
819 platform_device_unregister(lis3->pdev);
Samu Onkalo2a346992010-10-22 07:57:23 -0400820 if (lis3->pm_dev) {
821 /* Barrier after the sysfs remove */
822 pm_runtime_barrier(lis3->pm_dev);
823
824 /* SYSFS may have left chip running. Turn off if necessary */
825 if (!pm_runtime_suspended(lis3->pm_dev))
826 lis3lv02d_poweroff(&lis3_dev);
827
828 pm_runtime_disable(lis3->pm_dev);
829 pm_runtime_set_suspended(lis3->pm_dev);
830 }
Samu Onkalof9deb412010-10-22 07:57:24 -0400831 kfree(lis3->reg_cache);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800832 return 0;
833}
Eric Pielcfce41a2009-01-09 16:41:01 -0800834EXPORT_SYMBOL_GPL(lis3lv02d_remove_fs);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800835
Samu Onkaloecc437a2010-05-24 14:33:34 -0700836static void lis3lv02d_8b_configure(struct lis3lv02d *dev,
837 struct lis3lv02d_platform_data *p)
838{
Samu Onkalo92ba4fe2010-05-24 14:33:36 -0700839 int err;
Samu Onkalo342c5f12010-05-24 14:33:35 -0700840 int ctrl2 = p->hipass_ctrl;
841
Samu Onkaloecc437a2010-05-24 14:33:34 -0700842 if (p->click_flags) {
843 dev->write(dev, CLICK_CFG, p->click_flags);
844 dev->write(dev, CLICK_TIMELIMIT, p->click_time_limit);
845 dev->write(dev, CLICK_LATENCY, p->click_latency);
846 dev->write(dev, CLICK_WINDOW, p->click_window);
847 dev->write(dev, CLICK_THSZ, p->click_thresh_z & 0xf);
848 dev->write(dev, CLICK_THSY_X,
849 (p->click_thresh_x & 0xf) |
850 (p->click_thresh_y << 4));
Samu Onkalo6d94d402010-05-24 14:33:37 -0700851
852 if (dev->idev) {
853 struct input_dev *input_dev = lis3_dev.idev->input;
854 input_set_capability(input_dev, EV_KEY, BTN_X);
855 input_set_capability(input_dev, EV_KEY, BTN_Y);
856 input_set_capability(input_dev, EV_KEY, BTN_Z);
857 }
Samu Onkaloecc437a2010-05-24 14:33:34 -0700858 }
859
860 if (p->wakeup_flags) {
861 dev->write(dev, FF_WU_CFG_1, p->wakeup_flags);
862 dev->write(dev, FF_WU_THS_1, p->wakeup_thresh & 0x7f);
Samu Onkalocc23aa12010-10-22 07:57:29 -0400863 /* pdata value + 1 to keep this backward compatible*/
864 dev->write(dev, FF_WU_DURATION_1, p->duration1 + 1);
Samu Onkalo342c5f12010-05-24 14:33:35 -0700865 ctrl2 ^= HP_FF_WU1; /* Xor to keep compatible with old pdata*/
Samu Onkaloecc437a2010-05-24 14:33:34 -0700866 }
Samu Onkalo342c5f12010-05-24 14:33:35 -0700867
868 if (p->wakeup_flags2) {
869 dev->write(dev, FF_WU_CFG_2, p->wakeup_flags2);
870 dev->write(dev, FF_WU_THS_2, p->wakeup_thresh2 & 0x7f);
Samu Onkalocc23aa12010-10-22 07:57:29 -0400871 /* pdata value + 1 to keep this backward compatible*/
872 dev->write(dev, FF_WU_DURATION_2, p->duration2 + 1);
Samu Onkalo342c5f12010-05-24 14:33:35 -0700873 ctrl2 ^= HP_FF_WU2; /* Xor to keep compatible with old pdata*/
874 }
875 /* Configure hipass filters */
876 dev->write(dev, CTRL_REG2, ctrl2);
Samu Onkalo92ba4fe2010-05-24 14:33:36 -0700877
878 if (p->irq2) {
879 err = request_threaded_irq(p->irq2,
880 NULL,
881 lis302dl_interrupt_thread2_8b,
Samu Onkalocc23aa12010-10-22 07:57:29 -0400882 IRQF_TRIGGER_RISING | IRQF_ONESHOT |
883 (p->irq_flags2 & IRQF_TRIGGER_MASK),
Samu Onkalo92ba4fe2010-05-24 14:33:36 -0700884 DRIVER_NAME, &lis3_dev);
885 if (err < 0)
Joe Perches63366d32010-10-20 06:51:40 +0000886 pr_err("No second IRQ. Limited functionality\n");
Samu Onkalo92ba4fe2010-05-24 14:33:36 -0700887 }
Samu Onkaloecc437a2010-05-24 14:33:34 -0700888}
889
Daniel Mackab337a62009-03-31 15:24:31 -0700890/*
891 * Initialise the accelerometer and the various subsystems.
Éric Pielbc62c142009-12-14 18:01:39 -0800892 * Should be rather independent of the bus system.
Daniel Mackab337a62009-03-31 15:24:31 -0700893 */
Daniel Macka38da2e2009-03-31 15:24:32 -0700894int lis3lv02d_init_device(struct lis3lv02d *dev)
Daniel Mackab337a62009-03-31 15:24:31 -0700895{
Samu Onkalo92ba4fe2010-05-24 14:33:36 -0700896 int err;
897 irq_handler_t thread_fn;
Samu Onkalocc23aa12010-10-22 07:57:29 -0400898 int irq_flags = 0;
Samu Onkalo92ba4fe2010-05-24 14:33:36 -0700899
Daniel Macka38da2e2009-03-31 15:24:32 -0700900 dev->whoami = lis3lv02d_read_8(dev, WHO_AM_I);
901
902 switch (dev->whoami) {
Éric Pielbc62c142009-12-14 18:01:39 -0800903 case WAI_12B:
Joe Perches63366d32010-10-20 06:51:40 +0000904 pr_info("12 bits sensor found\n");
Éric Pielbc62c142009-12-14 18:01:39 -0800905 dev->read_data = lis3lv02d_read_12;
Daniel Macka38da2e2009-03-31 15:24:32 -0700906 dev->mdps_max_val = 2048;
Samu Onkalo641615a2009-12-14 18:01:41 -0800907 dev->pwron_delay = LIS3_PWRON_DELAY_WAI_12B;
Samu Onkaloa253aae2009-12-14 18:01:44 -0800908 dev->odrs = lis3_12_rates;
909 dev->odr_mask = CTRL1_DF0 | CTRL1_DF1;
Samu Onkalo32496c72009-12-14 18:01:46 -0800910 dev->scale = LIS3_SENSITIVITY_12B;
Samu Onkalof9deb412010-10-22 07:57:24 -0400911 dev->regs = lis3_wai12_regs;
912 dev->regs_size = ARRAY_SIZE(lis3_wai12_regs);
Daniel Macka38da2e2009-03-31 15:24:32 -0700913 break;
Éric Pielbc62c142009-12-14 18:01:39 -0800914 case WAI_8B:
Joe Perches63366d32010-10-20 06:51:40 +0000915 pr_info("8 bits sensor found\n");
Daniel Macka38da2e2009-03-31 15:24:32 -0700916 dev->read_data = lis3lv02d_read_8;
917 dev->mdps_max_val = 128;
Samu Onkalo641615a2009-12-14 18:01:41 -0800918 dev->pwron_delay = LIS3_PWRON_DELAY_WAI_8B;
Samu Onkaloa253aae2009-12-14 18:01:44 -0800919 dev->odrs = lis3_8_rates;
920 dev->odr_mask = CTRL1_DR;
Samu Onkalo32496c72009-12-14 18:01:46 -0800921 dev->scale = LIS3_SENSITIVITY_8B;
Samu Onkalof9deb412010-10-22 07:57:24 -0400922 dev->regs = lis3_wai8_regs;
923 dev->regs_size = ARRAY_SIZE(lis3_wai8_regs);
Daniel Macka38da2e2009-03-31 15:24:32 -0700924 break;
Takashi Iwai78537c32010-09-23 10:01:39 -0700925 case WAI_3DC:
Joe Perches63366d32010-10-20 06:51:40 +0000926 pr_info("8 bits 3DC sensor found\n");
Takashi Iwai78537c32010-09-23 10:01:39 -0700927 dev->read_data = lis3lv02d_read_8;
928 dev->mdps_max_val = 128;
929 dev->pwron_delay = LIS3_PWRON_DELAY_WAI_8B;
930 dev->odrs = lis3_3dc_rates;
931 dev->odr_mask = CTRL1_ODR0|CTRL1_ODR1|CTRL1_ODR2|CTRL1_ODR3;
932 dev->scale = LIS3_SENSITIVITY_8B;
933 break;
Daniel Macka38da2e2009-03-31 15:24:32 -0700934 default:
Joe Perches63366d32010-10-20 06:51:40 +0000935 pr_err("unknown sensor type 0x%X\n", dev->whoami);
Daniel Macka38da2e2009-03-31 15:24:32 -0700936 return -EINVAL;
937 }
938
Samu Onkalof9deb412010-10-22 07:57:24 -0400939 dev->reg_cache = kzalloc(max(sizeof(lis3_wai8_regs),
940 sizeof(lis3_wai12_regs)), GFP_KERNEL);
941
942 if (dev->reg_cache == NULL) {
943 printk(KERN_ERR DRIVER_NAME "out of memory\n");
944 return -ENOMEM;
945 }
946
Samu Onkalo2db4a762009-12-14 18:01:43 -0800947 mutex_init(&dev->mutex);
Samu Onkaloe7261112010-10-22 07:57:25 -0400948 atomic_set(&dev->wake_thread, 0);
Samu Onkalo2db4a762009-12-14 18:01:43 -0800949
Daniel Macka38da2e2009-03-31 15:24:32 -0700950 lis3lv02d_add_fs(dev);
Éric Piel1510dd52011-10-31 17:10:31 -0700951 err = lis3lv02d_poweron(dev);
952 if (err) {
953 lis3lv02d_remove_fs(dev);
954 return err;
955 }
Daniel Mackab337a62009-03-31 15:24:31 -0700956
Samu Onkalo2a346992010-10-22 07:57:23 -0400957 if (dev->pm_dev) {
958 pm_runtime_set_active(dev->pm_dev);
959 pm_runtime_enable(dev->pm_dev);
960 }
961
Daniel Mackab337a62009-03-31 15:24:31 -0700962 if (lis3lv02d_joystick_enable())
Joe Perches63366d32010-10-20 06:51:40 +0000963 pr_err("joystick initialization failed\n");
Daniel Mackab337a62009-03-31 15:24:31 -0700964
Daniel Mack8f3128e2009-06-16 15:34:17 -0700965 /* passing in platform specific data is purely optional and only
966 * used by the SPI transport layer at the moment */
967 if (dev->pdata) {
968 struct lis3lv02d_platform_data *p = dev->pdata;
969
Samu Onkaloecc437a2010-05-24 14:33:34 -0700970 if (dev->whoami == WAI_8B)
971 lis3lv02d_8b_configure(dev, p);
Daniel Mack8873c332009-09-21 17:04:43 -0700972
Samu Onkalocc23aa12010-10-22 07:57:29 -0400973 irq_flags = p->irq_flags1 & IRQF_TRIGGER_MASK;
974
Samu Onkaloe7261112010-10-22 07:57:25 -0400975 dev->irq_cfg = p->irq_cfg;
Daniel Mack8f3128e2009-06-16 15:34:17 -0700976 if (p->irq_cfg)
977 dev->write(dev, CTRL_REG3, p->irq_cfg);
Samu Onkalocc23aa12010-10-22 07:57:29 -0400978
979 if (p->default_rate)
980 lis3lv02d_set_odr(p->default_rate);
Daniel Mack8f3128e2009-06-16 15:34:17 -0700981 }
982
Daniel Macka38da2e2009-03-31 15:24:32 -0700983 /* bail if we did not get an IRQ from the bus layer */
Daniel Mackab337a62009-03-31 15:24:31 -0700984 if (!dev->irq) {
Kalhan Trisala20f0bc2011-01-25 14:24:37 +0000985 pr_debug("No IRQ. Disabling /dev/freefall\n");
Daniel Mackab337a62009-03-31 15:24:31 -0700986 goto out;
987 }
988
Samu Onkalo92ba4fe2010-05-24 14:33:36 -0700989 /*
990 * The sensor can generate interrupts for free-fall and direction
991 * detection (distinguishable with FF_WU_SRC and DD_SRC) but to keep
992 * the things simple and _fast_ we activate it only for free-fall, so
993 * no need to read register (very slow with ACPI). For the same reason,
994 * we forbid shared interrupts.
995 *
996 * IRQF_TRIGGER_RISING seems pointless on HP laptops because the
997 * io-apic is not configurable (and generates a warning) but I keep it
998 * in case of support for other hardware.
999 */
Takashi Iwaif7c77a32010-09-23 10:01:11 -07001000 if (dev->pdata && dev->whoami == WAI_8B)
Samu Onkalo92ba4fe2010-05-24 14:33:36 -07001001 thread_fn = lis302dl_interrupt_thread1_8b;
1002 else
1003 thread_fn = NULL;
1004
1005 err = request_threaded_irq(dev->irq, lis302dl_interrupt,
1006 thread_fn,
Samu Onkalocc23aa12010-10-22 07:57:29 -04001007 IRQF_TRIGGER_RISING | IRQF_ONESHOT |
1008 irq_flags,
Samu Onkalo92ba4fe2010-05-24 14:33:36 -07001009 DRIVER_NAME, &lis3_dev);
1010
1011 if (err < 0) {
Joe Perches63366d32010-10-20 06:51:40 +00001012 pr_err("Cannot get IRQ\n");
Samu Onkalo92ba4fe2010-05-24 14:33:36 -07001013 goto out;
1014 }
1015
Daniel Mackab337a62009-03-31 15:24:31 -07001016 if (misc_register(&lis3lv02d_misc_device))
Joe Perches63366d32010-10-20 06:51:40 +00001017 pr_err("misc_register failed\n");
Daniel Mackab337a62009-03-31 15:24:31 -07001018out:
Daniel Mackab337a62009-03-31 15:24:31 -07001019 return 0;
1020}
1021EXPORT_SYMBOL_GPL(lis3lv02d_init_device);
1022
Pavel Machek455fbdd2008-11-12 13:27:02 -08001023MODULE_DESCRIPTION("ST LIS3LV02Dx three-axis digital accelerometer driver");
Pavel Machekef2cfc72009-02-18 14:48:23 -08001024MODULE_AUTHOR("Yan Burman, Eric Piel, Pavel Machek");
Pavel Machek455fbdd2008-11-12 13:27:02 -08001025MODULE_LICENSE("GPL");