blob: a4929b72506e3467b09a8ad95f1119a39228e2c5 [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
23#include <linux/kernel.h>
24#include <linux/init.h>
25#include <linux/dmi.h>
26#include <linux/module.h>
27#include <linux/types.h>
28#include <linux/platform_device.h>
29#include <linux/interrupt.h>
Eric Pieldc6ea972009-06-16 15:34:15 -070030#include <linux/input-polldev.h>
Pavel Machek455fbdd2008-11-12 13:27:02 -080031#include <linux/delay.h>
32#include <linux/wait.h>
33#include <linux/poll.h>
Samu Onkalof9deb412010-10-22 07:57:24 -040034#include <linux/slab.h>
Pavel Machek455fbdd2008-11-12 13:27:02 -080035#include <linux/freezer.h>
Pavel Machek455fbdd2008-11-12 13:27:02 -080036#include <linux/uaccess.h>
Pavel Machekef2cfc72009-02-18 14:48:23 -080037#include <linux/miscdevice.h>
Samu Onkalo2a346992010-10-22 07:57:23 -040038#include <linux/pm_runtime.h>
Pavel Machek455fbdd2008-11-12 13:27:02 -080039#include <asm/atomic.h>
40#include "lis3lv02d.h"
41
42#define DRIVER_NAME "lis3lv02d"
Pavel Machek455fbdd2008-11-12 13:27:02 -080043
44/* joystick device poll interval in milliseconds */
45#define MDPS_POLL_INTERVAL 50
Samu Onkalo4a70a412010-05-24 14:33:37 -070046#define MDPS_POLL_MIN 0
47#define MDPS_POLL_MAX 2000
Samu Onkalo2a346992010-10-22 07:57:23 -040048
49#define LIS3_SYSFS_POWERDOWN_DELAY 5000 /* In milliseconds */
50
Pavel Machek455fbdd2008-11-12 13:27:02 -080051/*
52 * The sensor can also generate interrupts (DRDY) but it's pretty pointless
Éric Pielbc62c142009-12-14 18:01:39 -080053 * because they are generated even if the data do not change. So it's better
Pavel Machek455fbdd2008-11-12 13:27:02 -080054 * to keep the interrupt for the free-fall event. The values are updated at
55 * 40Hz (at the lowest frequency), but as it can be pretty time consuming on
56 * some low processor, we poll the sensor only at 20Hz... enough for the
57 * joystick.
58 */
59
Samu Onkalo641615a2009-12-14 18:01:41 -080060#define LIS3_PWRON_DELAY_WAI_12B (5000)
61#define LIS3_PWRON_DELAY_WAI_8B (3000)
62
Samu Onkalo32496c72009-12-14 18:01:46 -080063/*
64 * LIS3LV02D spec says 1024 LSBs corresponds 1 G -> 1LSB is 1000/1024 mG
65 * LIS302D spec says: 18 mG / digit
66 * LIS3_ACCURACY is used to increase accuracy of the intermediate
67 * calculation results.
68 */
69#define LIS3_ACCURACY 1024
70/* Sensitivity values for -2G +2G scale */
71#define LIS3_SENSITIVITY_12B ((LIS3_ACCURACY * 1000) / 1024)
72#define LIS3_SENSITIVITY_8B (18 * LIS3_ACCURACY)
73
Samu Onkalo477bc912010-10-22 07:57:30 -040074#define LIS3_DEFAULT_FUZZ_12B 3
75#define LIS3_DEFAULT_FLAT_12B 3
76#define LIS3_DEFAULT_FUZZ_8B 1
77#define LIS3_DEFAULT_FLAT_8B 1
Samu Onkalo32496c72009-12-14 18:01:46 -080078
Daniel Macka38da2e2009-03-31 15:24:32 -070079struct lis3lv02d lis3_dev = {
Pavel Machekbe84cfc2009-03-31 15:24:26 -070080 .misc_wait = __WAIT_QUEUE_HEAD_INITIALIZER(lis3_dev.misc_wait),
Pavel Machekef2cfc72009-02-18 14:48:23 -080081};
82
Pavel Machekbe84cfc2009-03-31 15:24:26 -070083EXPORT_SYMBOL_GPL(lis3_dev);
Pavel Machek455fbdd2008-11-12 13:27:02 -080084
Takashi Iwai2ee32142010-10-01 17:14:25 -040085/* just like param_set_int() but does sanity-check so that it won't point
86 * over the axis array size
87 */
88static int param_set_axis(const char *val, const struct kernel_param *kp)
89{
90 int ret = param_set_int(val, kp);
91 if (!ret) {
92 int val = *(int *)kp->arg;
93 if (val < 0)
94 val = -val;
95 if (!val || val > 3)
96 return -EINVAL;
97 }
98 return ret;
99}
100
101static struct kernel_param_ops param_ops_axis = {
102 .set = param_set_axis,
103 .get = param_get_int,
104};
105
106module_param_array_named(axes, lis3_dev.ac.as_array, axis, NULL, 0644);
107MODULE_PARM_DESC(axes, "Axis-mapping for x,y,z directions");
108
Daniel Macka38da2e2009-03-31 15:24:32 -0700109static s16 lis3lv02d_read_8(struct lis3lv02d *lis3, int reg)
110{
111 s8 lo;
112 if (lis3->read(lis3, reg, &lo) < 0)
113 return 0;
114
115 return lo;
116}
117
Éric Pielbc62c142009-12-14 18:01:39 -0800118static s16 lis3lv02d_read_12(struct lis3lv02d *lis3, int reg)
Pavel Machekbe84cfc2009-03-31 15:24:26 -0700119{
120 u8 lo, hi;
121
Daniel Macka38da2e2009-03-31 15:24:32 -0700122 lis3->read(lis3, reg - 1, &lo);
123 lis3->read(lis3, reg, &hi);
Pavel Machekbe84cfc2009-03-31 15:24:26 -0700124 /* In "12 bit right justified" mode, bit 6, bit 7, bit 8 = bit 5 */
125 return (s16)((hi << 8) | lo);
126}
127
Pavel Machek455fbdd2008-11-12 13:27:02 -0800128/**
129 * lis3lv02d_get_axis - For the given axis, give the value converted
130 * @axis: 1,2,3 - can also be negative
131 * @hw_values: raw values returned by the hardware
132 *
133 * Returns the converted value.
134 */
135static inline int lis3lv02d_get_axis(s8 axis, int hw_values[3])
136{
137 if (axis > 0)
138 return hw_values[axis - 1];
139 else
140 return -hw_values[-axis - 1];
141}
142
143/**
144 * lis3lv02d_get_xyz - Get X, Y and Z axis values from the accelerometer
Daniel Macka38da2e2009-03-31 15:24:32 -0700145 * @lis3: pointer to the device struct
146 * @x: where to store the X axis value
147 * @y: where to store the Y axis value
148 * @z: where to store the Z axis value
Pavel Machek455fbdd2008-11-12 13:27:02 -0800149 *
150 * Note that 40Hz input device can eat up about 10% CPU at 800MHZ
151 */
Daniel Macka38da2e2009-03-31 15:24:32 -0700152static void lis3lv02d_get_xyz(struct lis3lv02d *lis3, int *x, int *y, int *z)
Pavel Machek455fbdd2008-11-12 13:27:02 -0800153{
154 int position[3];
Samu Onkalo32496c72009-12-14 18:01:46 -0800155 int i;
Pavel Machek455fbdd2008-11-12 13:27:02 -0800156
Eric Piela002ee82009-06-16 15:34:14 -0700157 position[0] = lis3->read_data(lis3, OUTX);
158 position[1] = lis3->read_data(lis3, OUTY);
159 position[2] = lis3->read_data(lis3, OUTZ);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800160
Samu Onkalo32496c72009-12-14 18:01:46 -0800161 for (i = 0; i < 3; i++)
162 position[i] = (position[i] * lis3->scale) / LIS3_ACCURACY;
163
Eric Piela002ee82009-06-16 15:34:14 -0700164 *x = lis3lv02d_get_axis(lis3->ac.x, position);
165 *y = lis3lv02d_get_axis(lis3->ac.y, position);
166 *z = lis3lv02d_get_axis(lis3->ac.z, position);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800167}
168
Samu Onkalo641615a2009-12-14 18:01:41 -0800169/* conversion btw sampling rate and the register values */
170static int lis3_12_rates[4] = {40, 160, 640, 2560};
171static int lis3_8_rates[2] = {100, 400};
Takashi Iwai78537c32010-09-23 10:01:39 -0700172static int lis3_3dc_rates[16] = {0, 1, 10, 25, 50, 100, 200, 400, 1600, 5000};
Samu Onkalo641615a2009-12-14 18:01:41 -0800173
Samu Onkaloa253aae2009-12-14 18:01:44 -0800174/* ODR is Output Data Rate */
Samu Onkalo641615a2009-12-14 18:01:41 -0800175static int lis3lv02d_get_odr(void)
176{
177 u8 ctrl;
Samu Onkaloa253aae2009-12-14 18:01:44 -0800178 int shift;
Samu Onkalo641615a2009-12-14 18:01:41 -0800179
180 lis3_dev.read(&lis3_dev, CTRL_REG1, &ctrl);
Samu Onkaloa253aae2009-12-14 18:01:44 -0800181 ctrl &= lis3_dev.odr_mask;
182 shift = ffs(lis3_dev.odr_mask) - 1;
183 return lis3_dev.odrs[(ctrl >> shift)];
184}
Samu Onkalo641615a2009-12-14 18:01:41 -0800185
Samu Onkaloa253aae2009-12-14 18:01:44 -0800186static int lis3lv02d_set_odr(int rate)
187{
188 u8 ctrl;
189 int i, len, shift;
190
Takashi Iwai78537c32010-09-23 10:01:39 -0700191 if (!rate)
192 return -EINVAL;
193
Samu Onkaloa253aae2009-12-14 18:01:44 -0800194 lis3_dev.read(&lis3_dev, CTRL_REG1, &ctrl);
195 ctrl &= ~lis3_dev.odr_mask;
196 len = 1 << hweight_long(lis3_dev.odr_mask); /* # of possible values */
197 shift = ffs(lis3_dev.odr_mask) - 1;
198
199 for (i = 0; i < len; i++)
200 if (lis3_dev.odrs[i] == rate) {
201 lis3_dev.write(&lis3_dev, CTRL_REG1,
202 ctrl | (i << shift));
203 return 0;
204 }
205 return -EINVAL;
Samu Onkalo641615a2009-12-14 18:01:41 -0800206}
207
Samu Onkalo2db4a762009-12-14 18:01:43 -0800208static int lis3lv02d_selftest(struct lis3lv02d *lis3, s16 results[3])
209{
Takashi Iwai78537c32010-09-23 10:01:39 -0700210 u8 ctlreg, reg;
Samu Onkalo2db4a762009-12-14 18:01:43 -0800211 s16 x, y, z;
212 u8 selftest;
213 int ret;
214
215 mutex_lock(&lis3->mutex);
Takashi Iwai78537c32010-09-23 10:01:39 -0700216 if (lis3_dev.whoami == WAI_3DC) {
217 ctlreg = CTRL_REG4;
218 selftest = CTRL4_ST0;
219 } else {
220 ctlreg = CTRL_REG1;
221 if (lis3_dev.whoami == WAI_12B)
222 selftest = CTRL1_ST;
223 else
224 selftest = CTRL1_STP;
225 }
Samu Onkalo2db4a762009-12-14 18:01:43 -0800226
Takashi Iwai78537c32010-09-23 10:01:39 -0700227 lis3->read(lis3, ctlreg, &reg);
228 lis3->write(lis3, ctlreg, (reg | selftest));
Samu Onkalo2db4a762009-12-14 18:01:43 -0800229 msleep(lis3->pwron_delay / lis3lv02d_get_odr());
230
231 /* Read directly to avoid axis remap */
232 x = lis3->read_data(lis3, OUTX);
233 y = lis3->read_data(lis3, OUTY);
234 z = lis3->read_data(lis3, OUTZ);
235
236 /* back to normal settings */
Takashi Iwai78537c32010-09-23 10:01:39 -0700237 lis3->write(lis3, ctlreg, reg);
Samu Onkalo2db4a762009-12-14 18:01:43 -0800238 msleep(lis3->pwron_delay / lis3lv02d_get_odr());
239
240 results[0] = x - lis3->read_data(lis3, OUTX);
241 results[1] = y - lis3->read_data(lis3, OUTY);
242 results[2] = z - lis3->read_data(lis3, OUTZ);
243
244 ret = 0;
245 if (lis3->pdata) {
246 int i;
247 for (i = 0; i < 3; i++) {
248 /* Check against selftest acceptance limits */
249 if ((results[i] < lis3->pdata->st_min_limits[i]) ||
250 (results[i] > lis3->pdata->st_max_limits[i])) {
251 ret = -EIO;
252 goto fail;
253 }
254 }
255 }
256
257 /* test passed */
258fail:
259 mutex_unlock(&lis3->mutex);
260 return ret;
261}
262
Samu Onkalof9deb412010-10-22 07:57:24 -0400263/*
264 * Order of registers in the list affects to order of the restore process.
265 * Perhaps it is a good idea to set interrupt enable register as a last one
266 * after all other configurations
267 */
268static u8 lis3_wai8_regs[] = { FF_WU_CFG_1, FF_WU_THS_1, FF_WU_DURATION_1,
269 FF_WU_CFG_2, FF_WU_THS_2, FF_WU_DURATION_2,
270 CLICK_CFG, CLICK_SRC, CLICK_THSY_X, CLICK_THSZ,
271 CLICK_TIMELIMIT, CLICK_LATENCY, CLICK_WINDOW,
272 CTRL_REG1, CTRL_REG2, CTRL_REG3};
273
274static u8 lis3_wai12_regs[] = {FF_WU_CFG, FF_WU_THS_L, FF_WU_THS_H,
275 FF_WU_DURATION, DD_CFG, DD_THSI_L, DD_THSI_H,
276 DD_THSE_L, DD_THSE_H,
277 CTRL_REG1, CTRL_REG3, CTRL_REG2};
278
279static inline void lis3_context_save(struct lis3lv02d *lis3)
280{
281 int i;
282 for (i = 0; i < lis3->regs_size; i++)
283 lis3->read(lis3, lis3->regs[i], &lis3->reg_cache[i]);
284 lis3->regs_stored = true;
285}
286
287static inline void lis3_context_restore(struct lis3lv02d *lis3)
288{
289 int i;
290 if (lis3->regs_stored)
291 for (i = 0; i < lis3->regs_size; i++)
292 lis3->write(lis3, lis3->regs[i], lis3->reg_cache[i]);
293}
294
Daniel Macka38da2e2009-03-31 15:24:32 -0700295void lis3lv02d_poweroff(struct lis3lv02d *lis3)
Pavel Machek455fbdd2008-11-12 13:27:02 -0800296{
Samu Onkalof9deb412010-10-22 07:57:24 -0400297 if (lis3->reg_ctrl)
298 lis3_context_save(lis3);
Eric Piela002ee82009-06-16 15:34:14 -0700299 /* disable X,Y,Z axis and power down */
300 lis3->write(lis3, CTRL_REG1, 0x00);
Samu Onkalof9deb412010-10-22 07:57:24 -0400301 if (lis3->reg_ctrl)
302 lis3->reg_ctrl(lis3, LIS3_REG_OFF);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800303}
Eric Pielcfce41a2009-01-09 16:41:01 -0800304EXPORT_SYMBOL_GPL(lis3lv02d_poweroff);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800305
Daniel Macka38da2e2009-03-31 15:24:32 -0700306void lis3lv02d_poweron(struct lis3lv02d *lis3)
Pavel Machek455fbdd2008-11-12 13:27:02 -0800307{
Eric Piela002ee82009-06-16 15:34:14 -0700308 u8 reg;
309
310 lis3->init(lis3);
311
312 /*
313 * Common configuration
Éric Piel4b5d95b2009-12-14 18:01:40 -0800314 * BDU: (12 bits sensors only) LSB and MSB values are not updated until
315 * both have been read. So the value read will always be correct.
Samu Onkalo2a7fade2010-10-22 07:57:27 -0400316 * Set BOOT bit to refresh factory tuning values.
Eric Piela002ee82009-06-16 15:34:14 -0700317 */
Samu Onkalo2a7fade2010-10-22 07:57:27 -0400318 lis3->read(lis3, CTRL_REG2, &reg);
319 if (lis3->whoami == WAI_12B)
320 reg |= CTRL2_BDU | CTRL2_BOOT;
321 else
322 reg |= CTRL2_BOOT_8B;
323 lis3->write(lis3, CTRL_REG2, reg);
324
325 /* LIS3 power on delay is quite long */
326 msleep(lis3->pwron_delay / lis3lv02d_get_odr());
327
Samu Onkalof9deb412010-10-22 07:57:24 -0400328 if (lis3->reg_ctrl)
329 lis3_context_restore(lis3);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800330}
Eric Pielcfce41a2009-01-09 16:41:01 -0800331EXPORT_SYMBOL_GPL(lis3lv02d_poweron);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800332
Pavel Machek455fbdd2008-11-12 13:27:02 -0800333
Samu Onkalo6d94d402010-05-24 14:33:37 -0700334static void lis3lv02d_joystick_poll(struct input_polled_dev *pidev)
335{
336 int x, y, z;
337
338 mutex_lock(&lis3_dev.mutex);
339 lis3lv02d_get_xyz(&lis3_dev, &x, &y, &z);
340 input_report_abs(pidev->input, ABS_X, x);
341 input_report_abs(pidev->input, ABS_Y, y);
342 input_report_abs(pidev->input, ABS_Z, z);
343 input_sync(pidev->input);
344 mutex_unlock(&lis3_dev.mutex);
345}
346
Samu Onkalo2a346992010-10-22 07:57:23 -0400347static void lis3lv02d_joystick_open(struct input_polled_dev *pidev)
348{
349 if (lis3_dev.pm_dev)
350 pm_runtime_get_sync(lis3_dev.pm_dev);
Samu Onkaloe7261112010-10-22 07:57:25 -0400351
352 if (lis3_dev.pdata && lis3_dev.whoami == WAI_8B && lis3_dev.idev)
353 atomic_set(&lis3_dev.wake_thread, 1);
Samu Onkalo821f6642010-10-22 07:57:26 -0400354 /*
355 * Update coordinates for the case where poll interval is 0 and
356 * the chip in running purely under interrupt control
357 */
358 lis3lv02d_joystick_poll(pidev);
Samu Onkalo2a346992010-10-22 07:57:23 -0400359}
360
361static void lis3lv02d_joystick_close(struct input_polled_dev *pidev)
362{
Samu Onkaloe7261112010-10-22 07:57:25 -0400363 atomic_set(&lis3_dev.wake_thread, 0);
Samu Onkalo2a346992010-10-22 07:57:23 -0400364 if (lis3_dev.pm_dev)
365 pm_runtime_put(lis3_dev.pm_dev);
366}
367
Pavel Machekef2cfc72009-02-18 14:48:23 -0800368static irqreturn_t lis302dl_interrupt(int irq, void *dummy)
369{
Samu Onkalo92ba4fe2010-05-24 14:33:36 -0700370 if (!test_bit(0, &lis3_dev.misc_opened))
371 goto out;
372
Pavel Machekef2cfc72009-02-18 14:48:23 -0800373 /*
374 * Be careful: on some HP laptops the bios force DD when on battery and
375 * the lid is closed. This leads to interrupts as soon as a little move
376 * is done.
377 */
Pavel Machekbe84cfc2009-03-31 15:24:26 -0700378 atomic_inc(&lis3_dev.count);
Pavel Machekef2cfc72009-02-18 14:48:23 -0800379
Pavel Machekbe84cfc2009-03-31 15:24:26 -0700380 wake_up_interruptible(&lis3_dev.misc_wait);
381 kill_fasync(&lis3_dev.async_queue, SIGIO, POLL_IN);
Samu Onkalo92ba4fe2010-05-24 14:33:36 -0700382out:
Samu Onkaloe7261112010-10-22 07:57:25 -0400383 if (atomic_read(&lis3_dev.wake_thread))
Samu Onkalo92ba4fe2010-05-24 14:33:36 -0700384 return IRQ_WAKE_THREAD;
385 return IRQ_HANDLED;
386}
387
Samu Onkalo6d94d402010-05-24 14:33:37 -0700388static void lis302dl_interrupt_handle_click(struct lis3lv02d *lis3)
389{
390 struct input_dev *dev = lis3->idev->input;
391 u8 click_src;
392
393 mutex_lock(&lis3->mutex);
394 lis3->read(lis3, CLICK_SRC, &click_src);
395
396 if (click_src & CLICK_SINGLE_X) {
397 input_report_key(dev, lis3->mapped_btns[0], 1);
398 input_report_key(dev, lis3->mapped_btns[0], 0);
399 }
400
401 if (click_src & CLICK_SINGLE_Y) {
402 input_report_key(dev, lis3->mapped_btns[1], 1);
403 input_report_key(dev, lis3->mapped_btns[1], 0);
404 }
405
406 if (click_src & CLICK_SINGLE_Z) {
407 input_report_key(dev, lis3->mapped_btns[2], 1);
408 input_report_key(dev, lis3->mapped_btns[2], 0);
409 }
410 input_sync(dev);
411 mutex_unlock(&lis3->mutex);
412}
413
Samu Onkalo92ba4fe2010-05-24 14:33:36 -0700414static irqreturn_t lis302dl_interrupt_thread1_8b(int irq, void *data)
415{
Samu Onkalo6d94d402010-05-24 14:33:37 -0700416
417 struct lis3lv02d *lis3 = data;
418
Samu Onkaloe7261112010-10-22 07:57:25 -0400419 if ((lis3->irq_cfg & LIS3_IRQ1_MASK) == LIS3_IRQ1_CLICK)
Samu Onkalo6d94d402010-05-24 14:33:37 -0700420 lis302dl_interrupt_handle_click(lis3);
421 else
Samu Onkaloe7261112010-10-22 07:57:25 -0400422 lis3lv02d_joystick_poll(lis3->idev);
Samu Onkalo6d94d402010-05-24 14:33:37 -0700423
Samu Onkalo92ba4fe2010-05-24 14:33:36 -0700424 return IRQ_HANDLED;
425}
426
427static irqreturn_t lis302dl_interrupt_thread2_8b(int irq, void *data)
428{
Samu Onkalo6d94d402010-05-24 14:33:37 -0700429
430 struct lis3lv02d *lis3 = data;
431
Samu Onkaloe7261112010-10-22 07:57:25 -0400432 if ((lis3->irq_cfg & LIS3_IRQ2_MASK) == LIS3_IRQ2_CLICK)
Samu Onkalo6d94d402010-05-24 14:33:37 -0700433 lis302dl_interrupt_handle_click(lis3);
434 else
Samu Onkaloe7261112010-10-22 07:57:25 -0400435 lis3lv02d_joystick_poll(lis3->idev);
Samu Onkalo6d94d402010-05-24 14:33:37 -0700436
Pavel Machekef2cfc72009-02-18 14:48:23 -0800437 return IRQ_HANDLED;
438}
439
440static int lis3lv02d_misc_open(struct inode *inode, struct file *file)
441{
Pavel Machekbe84cfc2009-03-31 15:24:26 -0700442 if (test_and_set_bit(0, &lis3_dev.misc_opened))
Pavel Machekef2cfc72009-02-18 14:48:23 -0800443 return -EBUSY; /* already open */
444
Samu Onkalo2a346992010-10-22 07:57:23 -0400445 if (lis3_dev.pm_dev)
446 pm_runtime_get_sync(lis3_dev.pm_dev);
447
Pavel Machekbe84cfc2009-03-31 15:24:26 -0700448 atomic_set(&lis3_dev.count, 0);
Pavel Machekef2cfc72009-02-18 14:48:23 -0800449 return 0;
450}
451
452static int lis3lv02d_misc_release(struct inode *inode, struct file *file)
453{
Pavel Machekbe84cfc2009-03-31 15:24:26 -0700454 fasync_helper(-1, file, 0, &lis3_dev.async_queue);
Pavel Machekbe84cfc2009-03-31 15:24:26 -0700455 clear_bit(0, &lis3_dev.misc_opened); /* release the device */
Samu Onkalo2a346992010-10-22 07:57:23 -0400456 if (lis3_dev.pm_dev)
457 pm_runtime_put(lis3_dev.pm_dev);
Pavel Machekef2cfc72009-02-18 14:48:23 -0800458 return 0;
459}
460
461static ssize_t lis3lv02d_misc_read(struct file *file, char __user *buf,
462 size_t count, loff_t *pos)
463{
464 DECLARE_WAITQUEUE(wait, current);
465 u32 data;
466 unsigned char byte_data;
467 ssize_t retval = 1;
468
469 if (count < 1)
470 return -EINVAL;
471
Pavel Machekbe84cfc2009-03-31 15:24:26 -0700472 add_wait_queue(&lis3_dev.misc_wait, &wait);
Pavel Machekef2cfc72009-02-18 14:48:23 -0800473 while (true) {
474 set_current_state(TASK_INTERRUPTIBLE);
Pavel Machekbe84cfc2009-03-31 15:24:26 -0700475 data = atomic_xchg(&lis3_dev.count, 0);
Pavel Machekef2cfc72009-02-18 14:48:23 -0800476 if (data)
477 break;
478
479 if (file->f_flags & O_NONBLOCK) {
480 retval = -EAGAIN;
481 goto out;
482 }
483
484 if (signal_pending(current)) {
485 retval = -ERESTARTSYS;
486 goto out;
487 }
488
489 schedule();
490 }
491
492 if (data < 255)
493 byte_data = data;
494 else
495 byte_data = 255;
496
497 /* make sure we are not going into copy_to_user() with
498 * TASK_INTERRUPTIBLE state */
499 set_current_state(TASK_RUNNING);
500 if (copy_to_user(buf, &byte_data, sizeof(byte_data)))
501 retval = -EFAULT;
502
503out:
504 __set_current_state(TASK_RUNNING);
Pavel Machekbe84cfc2009-03-31 15:24:26 -0700505 remove_wait_queue(&lis3_dev.misc_wait, &wait);
Pavel Machekef2cfc72009-02-18 14:48:23 -0800506
507 return retval;
508}
509
510static unsigned int lis3lv02d_misc_poll(struct file *file, poll_table *wait)
511{
Pavel Machekbe84cfc2009-03-31 15:24:26 -0700512 poll_wait(file, &lis3_dev.misc_wait, wait);
513 if (atomic_read(&lis3_dev.count))
Pavel Machekef2cfc72009-02-18 14:48:23 -0800514 return POLLIN | POLLRDNORM;
515 return 0;
516}
517
518static int lis3lv02d_misc_fasync(int fd, struct file *file, int on)
519{
Pavel Machekbe84cfc2009-03-31 15:24:26 -0700520 return fasync_helper(fd, file, on, &lis3_dev.async_queue);
Pavel Machekef2cfc72009-02-18 14:48:23 -0800521}
522
523static const struct file_operations lis3lv02d_misc_fops = {
524 .owner = THIS_MODULE,
525 .llseek = no_llseek,
526 .read = lis3lv02d_misc_read,
527 .open = lis3lv02d_misc_open,
528 .release = lis3lv02d_misc_release,
529 .poll = lis3lv02d_misc_poll,
530 .fasync = lis3lv02d_misc_fasync,
531};
532
533static struct miscdevice lis3lv02d_misc_device = {
534 .minor = MISC_DYNAMIC_MINOR,
535 .name = "freefall",
536 .fops = &lis3lv02d_misc_fops,
537};
538
Eric Pielcfce41a2009-01-09 16:41:01 -0800539int lis3lv02d_joystick_enable(void)
Pavel Machek455fbdd2008-11-12 13:27:02 -0800540{
Eric Pieldc6ea972009-06-16 15:34:15 -0700541 struct input_dev *input_dev;
Pavel Machek455fbdd2008-11-12 13:27:02 -0800542 int err;
Samu Onkalo32496c72009-12-14 18:01:46 -0800543 int max_val, fuzz, flat;
Samu Onkalo6d94d402010-05-24 14:33:37 -0700544 int btns[] = {BTN_X, BTN_Y, BTN_Z};
Pavel Machek455fbdd2008-11-12 13:27:02 -0800545
Pavel Machekbe84cfc2009-03-31 15:24:26 -0700546 if (lis3_dev.idev)
Pavel Machek455fbdd2008-11-12 13:27:02 -0800547 return -EINVAL;
548
Eric Pieldc6ea972009-06-16 15:34:15 -0700549 lis3_dev.idev = input_allocate_polled_device();
Pavel Machekbe84cfc2009-03-31 15:24:26 -0700550 if (!lis3_dev.idev)
Pavel Machek455fbdd2008-11-12 13:27:02 -0800551 return -ENOMEM;
552
Eric Pieldc6ea972009-06-16 15:34:15 -0700553 lis3_dev.idev->poll = lis3lv02d_joystick_poll;
Samu Onkalo2a346992010-10-22 07:57:23 -0400554 lis3_dev.idev->open = lis3lv02d_joystick_open;
555 lis3_dev.idev->close = lis3lv02d_joystick_close;
Eric Pieldc6ea972009-06-16 15:34:15 -0700556 lis3_dev.idev->poll_interval = MDPS_POLL_INTERVAL;
Samu Onkalo4a70a412010-05-24 14:33:37 -0700557 lis3_dev.idev->poll_interval_min = MDPS_POLL_MIN;
558 lis3_dev.idev->poll_interval_max = MDPS_POLL_MAX;
Eric Pieldc6ea972009-06-16 15:34:15 -0700559 input_dev = lis3_dev.idev->input;
560
Eric Pieldc6ea972009-06-16 15:34:15 -0700561 input_dev->name = "ST LIS3LV02DL Accelerometer";
562 input_dev->phys = DRIVER_NAME "/input0";
563 input_dev->id.bustype = BUS_HOST;
564 input_dev->id.vendor = 0;
565 input_dev->dev.parent = &lis3_dev.pdev->dev;
Pavel Machek455fbdd2008-11-12 13:27:02 -0800566
Eric Pieldc6ea972009-06-16 15:34:15 -0700567 set_bit(EV_ABS, input_dev->evbit);
Samu Onkalo32496c72009-12-14 18:01:46 -0800568 max_val = (lis3_dev.mdps_max_val * lis3_dev.scale) / LIS3_ACCURACY;
Samu Onkalo477bc912010-10-22 07:57:30 -0400569 if (lis3_dev.whoami == WAI_12B) {
570 fuzz = LIS3_DEFAULT_FUZZ_12B;
571 flat = LIS3_DEFAULT_FLAT_12B;
572 } else {
573 fuzz = LIS3_DEFAULT_FUZZ_8B;
574 flat = LIS3_DEFAULT_FLAT_8B;
575 }
576 fuzz = (fuzz * lis3_dev.scale) / LIS3_ACCURACY;
577 flat = (flat * lis3_dev.scale) / LIS3_ACCURACY;
578
Samu Onkalo32496c72009-12-14 18:01:46 -0800579 input_set_abs_params(input_dev, ABS_X, -max_val, max_val, fuzz, flat);
580 input_set_abs_params(input_dev, ABS_Y, -max_val, max_val, fuzz, flat);
581 input_set_abs_params(input_dev, ABS_Z, -max_val, max_val, fuzz, flat);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800582
Samu Onkalo6d94d402010-05-24 14:33:37 -0700583 lis3_dev.mapped_btns[0] = lis3lv02d_get_axis(abs(lis3_dev.ac.x), btns);
584 lis3_dev.mapped_btns[1] = lis3lv02d_get_axis(abs(lis3_dev.ac.y), btns);
585 lis3_dev.mapped_btns[2] = lis3lv02d_get_axis(abs(lis3_dev.ac.z), btns);
586
Eric Pieldc6ea972009-06-16 15:34:15 -0700587 err = input_register_polled_device(lis3_dev.idev);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800588 if (err) {
Eric Pieldc6ea972009-06-16 15:34:15 -0700589 input_free_polled_device(lis3_dev.idev);
Pavel Machekbe84cfc2009-03-31 15:24:26 -0700590 lis3_dev.idev = NULL;
Pavel Machek455fbdd2008-11-12 13:27:02 -0800591 }
592
593 return err;
594}
Eric Pielcfce41a2009-01-09 16:41:01 -0800595EXPORT_SYMBOL_GPL(lis3lv02d_joystick_enable);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800596
Eric Pielcfce41a2009-01-09 16:41:01 -0800597void lis3lv02d_joystick_disable(void)
Pavel Machek455fbdd2008-11-12 13:27:02 -0800598{
Samu Onkalo92ba4fe2010-05-24 14:33:36 -0700599 if (lis3_dev.irq)
600 free_irq(lis3_dev.irq, &lis3_dev);
601 if (lis3_dev.pdata && lis3_dev.pdata->irq2)
602 free_irq(lis3_dev.pdata->irq2, &lis3_dev);
603
Pavel Machekbe84cfc2009-03-31 15:24:26 -0700604 if (!lis3_dev.idev)
Pavel Machek455fbdd2008-11-12 13:27:02 -0800605 return;
606
Eric Pielc2884242009-06-16 15:34:13 -0700607 if (lis3_dev.irq)
608 misc_deregister(&lis3lv02d_misc_device);
Eric Pieldc6ea972009-06-16 15:34:15 -0700609 input_unregister_polled_device(lis3_dev.idev);
Samu Onkalo66c85692009-12-14 18:01:39 -0800610 input_free_polled_device(lis3_dev.idev);
Pavel Machekbe84cfc2009-03-31 15:24:26 -0700611 lis3_dev.idev = NULL;
Pavel Machek455fbdd2008-11-12 13:27:02 -0800612}
Eric Pielcfce41a2009-01-09 16:41:01 -0800613EXPORT_SYMBOL_GPL(lis3lv02d_joystick_disable);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800614
Pavel Machek455fbdd2008-11-12 13:27:02 -0800615/* Sysfs stuff */
Samu Onkalo2a346992010-10-22 07:57:23 -0400616static void lis3lv02d_sysfs_poweron(struct lis3lv02d *lis3)
617{
618 /*
619 * SYSFS functions are fast visitors so put-call
620 * immediately after the get-call. However, keep
621 * chip running for a while and schedule delayed
622 * suspend. This way periodic sysfs calls doesn't
623 * suffer from relatively long power up time.
624 */
625
626 if (lis3->pm_dev) {
627 pm_runtime_get_sync(lis3->pm_dev);
628 pm_runtime_put_noidle(lis3->pm_dev);
629 pm_schedule_suspend(lis3->pm_dev, LIS3_SYSFS_POWERDOWN_DELAY);
630 }
631}
632
Samu Onkalo2db4a762009-12-14 18:01:43 -0800633static ssize_t lis3lv02d_selftest_show(struct device *dev,
634 struct device_attribute *attr, char *buf)
635{
636 int result;
637 s16 values[3];
638
Samu Onkalo2a346992010-10-22 07:57:23 -0400639 lis3lv02d_sysfs_poweron(&lis3_dev);
Samu Onkalo2db4a762009-12-14 18:01:43 -0800640 result = lis3lv02d_selftest(&lis3_dev, values);
641 return sprintf(buf, "%s %d %d %d\n", result == 0 ? "OK" : "FAIL",
642 values[0], values[1], values[2]);
643}
644
Pavel Machek455fbdd2008-11-12 13:27:02 -0800645static ssize_t lis3lv02d_position_show(struct device *dev,
646 struct device_attribute *attr, char *buf)
647{
648 int x, y, z;
649
Samu Onkalo2a346992010-10-22 07:57:23 -0400650 lis3lv02d_sysfs_poweron(&lis3_dev);
Samu Onkalo6d94d402010-05-24 14:33:37 -0700651 mutex_lock(&lis3_dev.mutex);
Daniel Macka38da2e2009-03-31 15:24:32 -0700652 lis3lv02d_get_xyz(&lis3_dev, &x, &y, &z);
Samu Onkalo6d94d402010-05-24 14:33:37 -0700653 mutex_unlock(&lis3_dev.mutex);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800654 return sprintf(buf, "(%d,%d,%d)\n", x, y, z);
655}
656
Pavel Machek455fbdd2008-11-12 13:27:02 -0800657static ssize_t lis3lv02d_rate_show(struct device *dev,
658 struct device_attribute *attr, char *buf)
659{
Samu Onkalo2a346992010-10-22 07:57:23 -0400660 lis3lv02d_sysfs_poweron(&lis3_dev);
Samu Onkalo641615a2009-12-14 18:01:41 -0800661 return sprintf(buf, "%d\n", lis3lv02d_get_odr());
Pavel Machek455fbdd2008-11-12 13:27:02 -0800662}
663
Samu Onkaloa253aae2009-12-14 18:01:44 -0800664static ssize_t lis3lv02d_rate_set(struct device *dev,
665 struct device_attribute *attr, const char *buf,
666 size_t count)
667{
668 unsigned long rate;
669
670 if (strict_strtoul(buf, 0, &rate))
671 return -EINVAL;
672
Samu Onkalo2a346992010-10-22 07:57:23 -0400673 lis3lv02d_sysfs_poweron(&lis3_dev);
Samu Onkaloa253aae2009-12-14 18:01:44 -0800674 if (lis3lv02d_set_odr(rate))
675 return -EINVAL;
676
677 return count;
678}
679
Samu Onkalo2db4a762009-12-14 18:01:43 -0800680static DEVICE_ATTR(selftest, S_IRUSR, lis3lv02d_selftest_show, NULL);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800681static DEVICE_ATTR(position, S_IRUGO, lis3lv02d_position_show, NULL);
Samu Onkaloa253aae2009-12-14 18:01:44 -0800682static DEVICE_ATTR(rate, S_IRUGO | S_IWUSR, lis3lv02d_rate_show,
683 lis3lv02d_rate_set);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800684
685static struct attribute *lis3lv02d_attributes[] = {
Samu Onkalo2db4a762009-12-14 18:01:43 -0800686 &dev_attr_selftest.attr,
Pavel Machek455fbdd2008-11-12 13:27:02 -0800687 &dev_attr_position.attr,
Pavel Machek455fbdd2008-11-12 13:27:02 -0800688 &dev_attr_rate.attr,
689 NULL
690};
691
692static struct attribute_group lis3lv02d_attribute_group = {
693 .attrs = lis3lv02d_attributes
694};
695
Eric Pielcfce41a2009-01-09 16:41:01 -0800696
Daniel Macka38da2e2009-03-31 15:24:32 -0700697static int lis3lv02d_add_fs(struct lis3lv02d *lis3)
Pavel Machek455fbdd2008-11-12 13:27:02 -0800698{
Eric Piela002ee82009-06-16 15:34:14 -0700699 lis3->pdev = platform_device_register_simple(DRIVER_NAME, -1, NULL, 0);
700 if (IS_ERR(lis3->pdev))
701 return PTR_ERR(lis3->pdev);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800702
Eric Piela002ee82009-06-16 15:34:14 -0700703 return sysfs_create_group(&lis3->pdev->dev.kobj, &lis3lv02d_attribute_group);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800704}
705
Eric Piela002ee82009-06-16 15:34:14 -0700706int lis3lv02d_remove_fs(struct lis3lv02d *lis3)
Pavel Machek455fbdd2008-11-12 13:27:02 -0800707{
Eric Piela002ee82009-06-16 15:34:14 -0700708 sysfs_remove_group(&lis3->pdev->dev.kobj, &lis3lv02d_attribute_group);
709 platform_device_unregister(lis3->pdev);
Samu Onkalo2a346992010-10-22 07:57:23 -0400710 if (lis3->pm_dev) {
711 /* Barrier after the sysfs remove */
712 pm_runtime_barrier(lis3->pm_dev);
713
714 /* SYSFS may have left chip running. Turn off if necessary */
715 if (!pm_runtime_suspended(lis3->pm_dev))
716 lis3lv02d_poweroff(&lis3_dev);
717
718 pm_runtime_disable(lis3->pm_dev);
719 pm_runtime_set_suspended(lis3->pm_dev);
720 }
Samu Onkalof9deb412010-10-22 07:57:24 -0400721 kfree(lis3->reg_cache);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800722 return 0;
723}
Eric Pielcfce41a2009-01-09 16:41:01 -0800724EXPORT_SYMBOL_GPL(lis3lv02d_remove_fs);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800725
Samu Onkaloecc437a2010-05-24 14:33:34 -0700726static void lis3lv02d_8b_configure(struct lis3lv02d *dev,
727 struct lis3lv02d_platform_data *p)
728{
Samu Onkalo92ba4fe2010-05-24 14:33:36 -0700729 int err;
Samu Onkalo342c5f12010-05-24 14:33:35 -0700730 int ctrl2 = p->hipass_ctrl;
731
Samu Onkaloecc437a2010-05-24 14:33:34 -0700732 if (p->click_flags) {
733 dev->write(dev, CLICK_CFG, p->click_flags);
734 dev->write(dev, CLICK_TIMELIMIT, p->click_time_limit);
735 dev->write(dev, CLICK_LATENCY, p->click_latency);
736 dev->write(dev, CLICK_WINDOW, p->click_window);
737 dev->write(dev, CLICK_THSZ, p->click_thresh_z & 0xf);
738 dev->write(dev, CLICK_THSY_X,
739 (p->click_thresh_x & 0xf) |
740 (p->click_thresh_y << 4));
Samu Onkalo6d94d402010-05-24 14:33:37 -0700741
742 if (dev->idev) {
743 struct input_dev *input_dev = lis3_dev.idev->input;
744 input_set_capability(input_dev, EV_KEY, BTN_X);
745 input_set_capability(input_dev, EV_KEY, BTN_Y);
746 input_set_capability(input_dev, EV_KEY, BTN_Z);
747 }
Samu Onkaloecc437a2010-05-24 14:33:34 -0700748 }
749
750 if (p->wakeup_flags) {
751 dev->write(dev, FF_WU_CFG_1, p->wakeup_flags);
752 dev->write(dev, FF_WU_THS_1, p->wakeup_thresh & 0x7f);
Samu Onkalocc23aa12010-10-22 07:57:29 -0400753 /* pdata value + 1 to keep this backward compatible*/
754 dev->write(dev, FF_WU_DURATION_1, p->duration1 + 1);
Samu Onkalo342c5f12010-05-24 14:33:35 -0700755 ctrl2 ^= HP_FF_WU1; /* Xor to keep compatible with old pdata*/
Samu Onkaloecc437a2010-05-24 14:33:34 -0700756 }
Samu Onkalo342c5f12010-05-24 14:33:35 -0700757
758 if (p->wakeup_flags2) {
759 dev->write(dev, FF_WU_CFG_2, p->wakeup_flags2);
760 dev->write(dev, FF_WU_THS_2, p->wakeup_thresh2 & 0x7f);
Samu Onkalocc23aa12010-10-22 07:57:29 -0400761 /* pdata value + 1 to keep this backward compatible*/
762 dev->write(dev, FF_WU_DURATION_2, p->duration2 + 1);
Samu Onkalo342c5f12010-05-24 14:33:35 -0700763 ctrl2 ^= HP_FF_WU2; /* Xor to keep compatible with old pdata*/
764 }
765 /* Configure hipass filters */
766 dev->write(dev, CTRL_REG2, ctrl2);
Samu Onkalo92ba4fe2010-05-24 14:33:36 -0700767
768 if (p->irq2) {
769 err = request_threaded_irq(p->irq2,
770 NULL,
771 lis302dl_interrupt_thread2_8b,
Samu Onkalocc23aa12010-10-22 07:57:29 -0400772 IRQF_TRIGGER_RISING | IRQF_ONESHOT |
773 (p->irq_flags2 & IRQF_TRIGGER_MASK),
Samu Onkalo92ba4fe2010-05-24 14:33:36 -0700774 DRIVER_NAME, &lis3_dev);
775 if (err < 0)
776 printk(KERN_ERR DRIVER_NAME
777 "No second IRQ. Limited functionality\n");
778 }
Samu Onkaloecc437a2010-05-24 14:33:34 -0700779}
780
Daniel Mackab337a62009-03-31 15:24:31 -0700781/*
782 * Initialise the accelerometer and the various subsystems.
Éric Pielbc62c142009-12-14 18:01:39 -0800783 * Should be rather independent of the bus system.
Daniel Mackab337a62009-03-31 15:24:31 -0700784 */
Daniel Macka38da2e2009-03-31 15:24:32 -0700785int lis3lv02d_init_device(struct lis3lv02d *dev)
Daniel Mackab337a62009-03-31 15:24:31 -0700786{
Samu Onkalo92ba4fe2010-05-24 14:33:36 -0700787 int err;
788 irq_handler_t thread_fn;
Samu Onkalocc23aa12010-10-22 07:57:29 -0400789 int irq_flags = 0;
Samu Onkalo92ba4fe2010-05-24 14:33:36 -0700790
Daniel Macka38da2e2009-03-31 15:24:32 -0700791 dev->whoami = lis3lv02d_read_8(dev, WHO_AM_I);
792
793 switch (dev->whoami) {
Éric Pielbc62c142009-12-14 18:01:39 -0800794 case WAI_12B:
795 printk(KERN_INFO DRIVER_NAME ": 12 bits sensor found\n");
796 dev->read_data = lis3lv02d_read_12;
Daniel Macka38da2e2009-03-31 15:24:32 -0700797 dev->mdps_max_val = 2048;
Samu Onkalo641615a2009-12-14 18:01:41 -0800798 dev->pwron_delay = LIS3_PWRON_DELAY_WAI_12B;
Samu Onkaloa253aae2009-12-14 18:01:44 -0800799 dev->odrs = lis3_12_rates;
800 dev->odr_mask = CTRL1_DF0 | CTRL1_DF1;
Samu Onkalo32496c72009-12-14 18:01:46 -0800801 dev->scale = LIS3_SENSITIVITY_12B;
Samu Onkalof9deb412010-10-22 07:57:24 -0400802 dev->regs = lis3_wai12_regs;
803 dev->regs_size = ARRAY_SIZE(lis3_wai12_regs);
Daniel Macka38da2e2009-03-31 15:24:32 -0700804 break;
Éric Pielbc62c142009-12-14 18:01:39 -0800805 case WAI_8B:
806 printk(KERN_INFO DRIVER_NAME ": 8 bits sensor found\n");
Daniel Macka38da2e2009-03-31 15:24:32 -0700807 dev->read_data = lis3lv02d_read_8;
808 dev->mdps_max_val = 128;
Samu Onkalo641615a2009-12-14 18:01:41 -0800809 dev->pwron_delay = LIS3_PWRON_DELAY_WAI_8B;
Samu Onkaloa253aae2009-12-14 18:01:44 -0800810 dev->odrs = lis3_8_rates;
811 dev->odr_mask = CTRL1_DR;
Samu Onkalo32496c72009-12-14 18:01:46 -0800812 dev->scale = LIS3_SENSITIVITY_8B;
Samu Onkalof9deb412010-10-22 07:57:24 -0400813 dev->regs = lis3_wai8_regs;
814 dev->regs_size = ARRAY_SIZE(lis3_wai8_regs);
Daniel Macka38da2e2009-03-31 15:24:32 -0700815 break;
Takashi Iwai78537c32010-09-23 10:01:39 -0700816 case WAI_3DC:
817 printk(KERN_INFO DRIVER_NAME ": 8 bits 3DC sensor found\n");
818 dev->read_data = lis3lv02d_read_8;
819 dev->mdps_max_val = 128;
820 dev->pwron_delay = LIS3_PWRON_DELAY_WAI_8B;
821 dev->odrs = lis3_3dc_rates;
822 dev->odr_mask = CTRL1_ODR0|CTRL1_ODR1|CTRL1_ODR2|CTRL1_ODR3;
823 dev->scale = LIS3_SENSITIVITY_8B;
824 break;
Daniel Macka38da2e2009-03-31 15:24:32 -0700825 default:
826 printk(KERN_ERR DRIVER_NAME
Eric Piela002ee82009-06-16 15:34:14 -0700827 ": unknown sensor type 0x%X\n", dev->whoami);
Daniel Macka38da2e2009-03-31 15:24:32 -0700828 return -EINVAL;
829 }
830
Samu Onkalof9deb412010-10-22 07:57:24 -0400831 dev->reg_cache = kzalloc(max(sizeof(lis3_wai8_regs),
832 sizeof(lis3_wai12_regs)), GFP_KERNEL);
833
834 if (dev->reg_cache == NULL) {
835 printk(KERN_ERR DRIVER_NAME "out of memory\n");
836 return -ENOMEM;
837 }
838
Samu Onkalo2db4a762009-12-14 18:01:43 -0800839 mutex_init(&dev->mutex);
Samu Onkaloe7261112010-10-22 07:57:25 -0400840 atomic_set(&dev->wake_thread, 0);
Samu Onkalo2db4a762009-12-14 18:01:43 -0800841
Daniel Macka38da2e2009-03-31 15:24:32 -0700842 lis3lv02d_add_fs(dev);
Eric Piela002ee82009-06-16 15:34:14 -0700843 lis3lv02d_poweron(dev);
Daniel Mackab337a62009-03-31 15:24:31 -0700844
Samu Onkalo2a346992010-10-22 07:57:23 -0400845 if (dev->pm_dev) {
846 pm_runtime_set_active(dev->pm_dev);
847 pm_runtime_enable(dev->pm_dev);
848 }
849
Daniel Mackab337a62009-03-31 15:24:31 -0700850 if (lis3lv02d_joystick_enable())
851 printk(KERN_ERR DRIVER_NAME ": joystick initialization failed\n");
852
Daniel Mack8f3128e2009-06-16 15:34:17 -0700853 /* passing in platform specific data is purely optional and only
854 * used by the SPI transport layer at the moment */
855 if (dev->pdata) {
856 struct lis3lv02d_platform_data *p = dev->pdata;
857
Samu Onkaloecc437a2010-05-24 14:33:34 -0700858 if (dev->whoami == WAI_8B)
859 lis3lv02d_8b_configure(dev, p);
Daniel Mack8873c332009-09-21 17:04:43 -0700860
Samu Onkalocc23aa12010-10-22 07:57:29 -0400861 irq_flags = p->irq_flags1 & IRQF_TRIGGER_MASK;
862
Samu Onkaloe7261112010-10-22 07:57:25 -0400863 dev->irq_cfg = p->irq_cfg;
Daniel Mack8f3128e2009-06-16 15:34:17 -0700864 if (p->irq_cfg)
865 dev->write(dev, CTRL_REG3, p->irq_cfg);
Samu Onkalocc23aa12010-10-22 07:57:29 -0400866
867 if (p->default_rate)
868 lis3lv02d_set_odr(p->default_rate);
Daniel Mack8f3128e2009-06-16 15:34:17 -0700869 }
870
Daniel Macka38da2e2009-03-31 15:24:32 -0700871 /* bail if we did not get an IRQ from the bus layer */
Daniel Mackab337a62009-03-31 15:24:31 -0700872 if (!dev->irq) {
873 printk(KERN_ERR DRIVER_NAME
Daniel Macka38da2e2009-03-31 15:24:32 -0700874 ": No IRQ. Disabling /dev/freefall\n");
Daniel Mackab337a62009-03-31 15:24:31 -0700875 goto out;
876 }
877
Samu Onkalo92ba4fe2010-05-24 14:33:36 -0700878 /*
879 * The sensor can generate interrupts for free-fall and direction
880 * detection (distinguishable with FF_WU_SRC and DD_SRC) but to keep
881 * the things simple and _fast_ we activate it only for free-fall, so
882 * no need to read register (very slow with ACPI). For the same reason,
883 * we forbid shared interrupts.
884 *
885 * IRQF_TRIGGER_RISING seems pointless on HP laptops because the
886 * io-apic is not configurable (and generates a warning) but I keep it
887 * in case of support for other hardware.
888 */
Takashi Iwaif7c77a32010-09-23 10:01:11 -0700889 if (dev->pdata && dev->whoami == WAI_8B)
Samu Onkalo92ba4fe2010-05-24 14:33:36 -0700890 thread_fn = lis302dl_interrupt_thread1_8b;
891 else
892 thread_fn = NULL;
893
894 err = request_threaded_irq(dev->irq, lis302dl_interrupt,
895 thread_fn,
Samu Onkalocc23aa12010-10-22 07:57:29 -0400896 IRQF_TRIGGER_RISING | IRQF_ONESHOT |
897 irq_flags,
Samu Onkalo92ba4fe2010-05-24 14:33:36 -0700898 DRIVER_NAME, &lis3_dev);
899
900 if (err < 0) {
901 printk(KERN_ERR DRIVER_NAME "Cannot get IRQ\n");
902 goto out;
903 }
904
Daniel Mackab337a62009-03-31 15:24:31 -0700905 if (misc_register(&lis3lv02d_misc_device))
906 printk(KERN_ERR DRIVER_NAME ": misc_register failed\n");
907out:
Daniel Mackab337a62009-03-31 15:24:31 -0700908 return 0;
909}
910EXPORT_SYMBOL_GPL(lis3lv02d_init_device);
911
Pavel Machek455fbdd2008-11-12 13:27:02 -0800912MODULE_DESCRIPTION("ST LIS3LV02Dx three-axis digital accelerometer driver");
Pavel Machekef2cfc72009-02-18 14:48:23 -0800913MODULE_AUTHOR("Yan Burman, Eric Piel, Pavel Machek");
Pavel Machek455fbdd2008-11-12 13:27:02 -0800914MODULE_LICENSE("GPL");