blob: e9bb1cfa6a7a2b80d6ce15df9f50b86061cc193d [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>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010026#include <linux/sched/signal.h>
Pavel Machek455fbdd2008-11-12 13:27:02 -080027#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>
Daniel Mackcbac1a82012-09-26 13:58:16 -070042#include <linux/of_device.h>
Pavel Machek455fbdd2008-11-12 13:27:02 -080043#include "lis3lv02d.h"
44
45#define DRIVER_NAME "lis3lv02d"
Pavel Machek455fbdd2008-11-12 13:27:02 -080046
47/* joystick device poll interval in milliseconds */
48#define MDPS_POLL_INTERVAL 50
Samu Onkalo4a70a412010-05-24 14:33:37 -070049#define MDPS_POLL_MIN 0
50#define MDPS_POLL_MAX 2000
Samu Onkalo2a346992010-10-22 07:57:23 -040051
52#define LIS3_SYSFS_POWERDOWN_DELAY 5000 /* In milliseconds */
53
Samu Onkalo029756d2010-10-22 07:57:32 -040054#define SELFTEST_OK 0
55#define SELFTEST_FAIL -1
56#define SELFTEST_IRQ -2
57
58#define IRQ_LINE0 0
59#define IRQ_LINE1 1
60
Pavel Machek455fbdd2008-11-12 13:27:02 -080061/*
62 * The sensor can also generate interrupts (DRDY) but it's pretty pointless
Éric Pielbc62c142009-12-14 18:01:39 -080063 * because they are generated even if the data do not change. So it's better
Pavel Machek455fbdd2008-11-12 13:27:02 -080064 * to keep the interrupt for the free-fall event. The values are updated at
65 * 40Hz (at the lowest frequency), but as it can be pretty time consuming on
66 * some low processor, we poll the sensor only at 20Hz... enough for the
67 * joystick.
68 */
69
Samu Onkalo641615a2009-12-14 18:01:41 -080070#define LIS3_PWRON_DELAY_WAI_12B (5000)
71#define LIS3_PWRON_DELAY_WAI_8B (3000)
72
Samu Onkalo32496c72009-12-14 18:01:46 -080073/*
74 * LIS3LV02D spec says 1024 LSBs corresponds 1 G -> 1LSB is 1000/1024 mG
75 * LIS302D spec says: 18 mG / digit
76 * LIS3_ACCURACY is used to increase accuracy of the intermediate
77 * calculation results.
78 */
79#define LIS3_ACCURACY 1024
80/* Sensitivity values for -2G +2G scale */
81#define LIS3_SENSITIVITY_12B ((LIS3_ACCURACY * 1000) / 1024)
82#define LIS3_SENSITIVITY_8B (18 * LIS3_ACCURACY)
83
AnilKumar Ch0bf5a8b2012-08-22 12:00:39 +053084/*
AnilKumar Che2b2ed82012-09-24 14:53:49 +053085 * LIS331DLH spec says 1LSBs corresponds 4G/4096 -> 1LSB is 1000/1024 mG.
86 * Below macros defines sensitivity values for +/-2G. Dataout bits for
87 * +/-2G range is 12 bits so 4 bits adjustment must be done to get 12bit
88 * data from 16bit value. Currently this driver supports only 2G range.
AnilKumar Ch0bf5a8b2012-08-22 12:00:39 +053089 */
90#define LIS3DLH_SENSITIVITY_2G ((LIS3_ACCURACY * 1000) / 1024)
91#define SHIFT_ADJ_2G 4
92
Samu Onkalo477bc912010-10-22 07:57:30 -040093#define LIS3_DEFAULT_FUZZ_12B 3
94#define LIS3_DEFAULT_FLAT_12B 3
95#define LIS3_DEFAULT_FUZZ_8B 1
96#define LIS3_DEFAULT_FLAT_8B 1
Samu Onkalo32496c72009-12-14 18:01:46 -080097
Daniel Macka38da2e2009-03-31 15:24:32 -070098struct lis3lv02d lis3_dev = {
Pavel Machekbe84cfc2009-03-31 15:24:26 -070099 .misc_wait = __WAIT_QUEUE_HEAD_INITIALIZER(lis3_dev.misc_wait),
Pavel Machekef2cfc72009-02-18 14:48:23 -0800100};
Pavel Machekbe84cfc2009-03-31 15:24:26 -0700101EXPORT_SYMBOL_GPL(lis3_dev);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800102
Takashi Iwai2ee32142010-10-01 17:14:25 -0400103/* just like param_set_int() but does sanity-check so that it won't point
104 * over the axis array size
105 */
106static int param_set_axis(const char *val, const struct kernel_param *kp)
107{
108 int ret = param_set_int(val, kp);
109 if (!ret) {
110 int val = *(int *)kp->arg;
111 if (val < 0)
112 val = -val;
113 if (!val || val > 3)
114 return -EINVAL;
115 }
116 return ret;
117}
118
Luis R. Rodriguez9c278472015-05-27 11:09:38 +0930119static const struct kernel_param_ops param_ops_axis = {
Takashi Iwai2ee32142010-10-01 17:14:25 -0400120 .set = param_set_axis,
121 .get = param_get_int,
122};
123
Rusty Russellbafeafe2012-01-13 09:32:16 +1030124#define param_check_axis(name, p) param_check_int(name, p)
125
Takashi Iwai2ee32142010-10-01 17:14:25 -0400126module_param_array_named(axes, lis3_dev.ac.as_array, axis, NULL, 0644);
127MODULE_PARM_DESC(axes, "Axis-mapping for x,y,z directions");
128
Daniel Macka38da2e2009-03-31 15:24:32 -0700129static s16 lis3lv02d_read_8(struct lis3lv02d *lis3, int reg)
130{
131 s8 lo;
132 if (lis3->read(lis3, reg, &lo) < 0)
133 return 0;
134
135 return lo;
136}
137
Éric Pielbc62c142009-12-14 18:01:39 -0800138static s16 lis3lv02d_read_12(struct lis3lv02d *lis3, int reg)
Pavel Machekbe84cfc2009-03-31 15:24:26 -0700139{
140 u8 lo, hi;
141
Daniel Macka38da2e2009-03-31 15:24:32 -0700142 lis3->read(lis3, reg - 1, &lo);
143 lis3->read(lis3, reg, &hi);
Pavel Machekbe84cfc2009-03-31 15:24:26 -0700144 /* In "12 bit right justified" mode, bit 6, bit 7, bit 8 = bit 5 */
145 return (s16)((hi << 8) | lo);
146}
147
AnilKumar Ch0bf5a8b2012-08-22 12:00:39 +0530148/* 12bits for 2G range, 13 bits for 4G range and 14 bits for 8G range */
AnilKumar Che2b2ed82012-09-24 14:53:49 +0530149static s16 lis331dlh_read_data(struct lis3lv02d *lis3, int reg)
AnilKumar Ch0bf5a8b2012-08-22 12:00:39 +0530150{
151 u8 lo, hi;
152 int v;
153
154 lis3->read(lis3, reg - 1, &lo);
155 lis3->read(lis3, reg, &hi);
156 v = (int) ((hi << 8) | lo);
157
158 return (s16) v >> lis3->shift_adj;
159}
160
Pavel Machek455fbdd2008-11-12 13:27:02 -0800161/**
162 * lis3lv02d_get_axis - For the given axis, give the value converted
163 * @axis: 1,2,3 - can also be negative
164 * @hw_values: raw values returned by the hardware
165 *
166 * Returns the converted value.
167 */
168static inline int lis3lv02d_get_axis(s8 axis, int hw_values[3])
169{
170 if (axis > 0)
171 return hw_values[axis - 1];
172 else
173 return -hw_values[-axis - 1];
174}
175
176/**
177 * lis3lv02d_get_xyz - Get X, Y and Z axis values from the accelerometer
Daniel Macka38da2e2009-03-31 15:24:32 -0700178 * @lis3: pointer to the device struct
179 * @x: where to store the X axis value
180 * @y: where to store the Y axis value
181 * @z: where to store the Z axis value
Pavel Machek455fbdd2008-11-12 13:27:02 -0800182 *
183 * Note that 40Hz input device can eat up about 10% CPU at 800MHZ
184 */
Daniel Macka38da2e2009-03-31 15:24:32 -0700185static void lis3lv02d_get_xyz(struct lis3lv02d *lis3, int *x, int *y, int *z)
Pavel Machek455fbdd2008-11-12 13:27:02 -0800186{
187 int position[3];
Samu Onkalo32496c72009-12-14 18:01:46 -0800188 int i;
Pavel Machek455fbdd2008-11-12 13:27:02 -0800189
Samu Onkalof10a5402010-10-22 07:57:31 -0400190 if (lis3->blkread) {
Éric Piel895c1562011-10-31 17:11:05 -0700191 if (lis3->whoami == WAI_12B) {
Samu Onkalof10a5402010-10-22 07:57:31 -0400192 u16 data[3];
193 lis3->blkread(lis3, OUTX_L, 6, (u8 *)data);
194 for (i = 0; i < 3; i++)
195 position[i] = (s16)le16_to_cpu(data[i]);
196 } else {
197 u8 data[5];
198 /* Data: x, dummy, y, dummy, z */
199 lis3->blkread(lis3, OUTX, 5, data);
200 for (i = 0; i < 3; i++)
201 position[i] = (s8)data[i * 2];
202 }
203 } else {
204 position[0] = lis3->read_data(lis3, OUTX);
205 position[1] = lis3->read_data(lis3, OUTY);
206 position[2] = lis3->read_data(lis3, OUTZ);
207 }
Pavel Machek455fbdd2008-11-12 13:27:02 -0800208
Samu Onkalo32496c72009-12-14 18:01:46 -0800209 for (i = 0; i < 3; i++)
210 position[i] = (position[i] * lis3->scale) / LIS3_ACCURACY;
211
Eric Piela002ee82009-06-16 15:34:14 -0700212 *x = lis3lv02d_get_axis(lis3->ac.x, position);
213 *y = lis3lv02d_get_axis(lis3->ac.y, position);
214 *z = lis3lv02d_get_axis(lis3->ac.z, position);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800215}
216
Samu Onkalo641615a2009-12-14 18:01:41 -0800217/* conversion btw sampling rate and the register values */
218static int lis3_12_rates[4] = {40, 160, 640, 2560};
219static int lis3_8_rates[2] = {100, 400};
Takashi Iwai78537c32010-09-23 10:01:39 -0700220static int lis3_3dc_rates[16] = {0, 1, 10, 25, 50, 100, 200, 400, 1600, 5000};
AnilKumar Ch0bf5a8b2012-08-22 12:00:39 +0530221static int lis3_3dlh_rates[4] = {50, 100, 400, 1000};
Samu Onkalo641615a2009-12-14 18:01:41 -0800222
Samu Onkaloa253aae2009-12-14 18:01:44 -0800223/* ODR is Output Data Rate */
Éric Piel895c1562011-10-31 17:11:05 -0700224static int lis3lv02d_get_odr(struct lis3lv02d *lis3)
Samu Onkalo641615a2009-12-14 18:01:41 -0800225{
226 u8 ctrl;
Samu Onkaloa253aae2009-12-14 18:01:44 -0800227 int shift;
Samu Onkalo641615a2009-12-14 18:01:41 -0800228
Éric Piel895c1562011-10-31 17:11:05 -0700229 lis3->read(lis3, CTRL_REG1, &ctrl);
230 ctrl &= lis3->odr_mask;
231 shift = ffs(lis3->odr_mask) - 1;
232 return lis3->odrs[(ctrl >> shift)];
Samu Onkaloa253aae2009-12-14 18:01:44 -0800233}
Samu Onkalo641615a2009-12-14 18:01:41 -0800234
Éric Piel1510dd52011-10-31 17:10:31 -0700235static int lis3lv02d_get_pwron_wait(struct lis3lv02d *lis3)
236{
Éric Piel895c1562011-10-31 17:11:05 -0700237 int div = lis3lv02d_get_odr(lis3);
Éric Piel1510dd52011-10-31 17:10:31 -0700238
239 if (WARN_ONCE(div == 0, "device returned spurious data"))
240 return -ENXIO;
241
242 /* LIS3 power on delay is quite long */
243 msleep(lis3->pwron_delay / div);
244 return 0;
245}
246
Éric Piel895c1562011-10-31 17:11:05 -0700247static int lis3lv02d_set_odr(struct lis3lv02d *lis3, int rate)
Samu Onkaloa253aae2009-12-14 18:01:44 -0800248{
249 u8 ctrl;
250 int i, len, shift;
251
Takashi Iwai78537c32010-09-23 10:01:39 -0700252 if (!rate)
253 return -EINVAL;
254
Éric Piel895c1562011-10-31 17:11:05 -0700255 lis3->read(lis3, CTRL_REG1, &ctrl);
256 ctrl &= ~lis3->odr_mask;
257 len = 1 << hweight_long(lis3->odr_mask); /* # of possible values */
258 shift = ffs(lis3->odr_mask) - 1;
Samu Onkaloa253aae2009-12-14 18:01:44 -0800259
260 for (i = 0; i < len; i++)
Éric Piel895c1562011-10-31 17:11:05 -0700261 if (lis3->odrs[i] == rate) {
262 lis3->write(lis3, CTRL_REG1,
Samu Onkaloa253aae2009-12-14 18:01:44 -0800263 ctrl | (i << shift));
264 return 0;
265 }
266 return -EINVAL;
Samu Onkalo641615a2009-12-14 18:01:41 -0800267}
268
Samu Onkalo2db4a762009-12-14 18:01:43 -0800269static int lis3lv02d_selftest(struct lis3lv02d *lis3, s16 results[3])
270{
Takashi Iwai78537c32010-09-23 10:01:39 -0700271 u8 ctlreg, reg;
Samu Onkalo2db4a762009-12-14 18:01:43 -0800272 s16 x, y, z;
273 u8 selftest;
274 int ret;
Samu Onkalo029756d2010-10-22 07:57:32 -0400275 u8 ctrl_reg_data;
276 unsigned char irq_cfg;
Samu Onkalo2db4a762009-12-14 18:01:43 -0800277
278 mutex_lock(&lis3->mutex);
Samu Onkalo029756d2010-10-22 07:57:32 -0400279
280 irq_cfg = lis3->irq_cfg;
Éric Piel895c1562011-10-31 17:11:05 -0700281 if (lis3->whoami == WAI_8B) {
Samu Onkalo029756d2010-10-22 07:57:32 -0400282 lis3->data_ready_count[IRQ_LINE0] = 0;
283 lis3->data_ready_count[IRQ_LINE1] = 0;
284
285 /* Change interrupt cfg to data ready for selftest */
Éric Piel895c1562011-10-31 17:11:05 -0700286 atomic_inc(&lis3->wake_thread);
Samu Onkalo029756d2010-10-22 07:57:32 -0400287 lis3->irq_cfg = LIS3_IRQ1_DATA_READY | LIS3_IRQ2_DATA_READY;
288 lis3->read(lis3, CTRL_REG3, &ctrl_reg_data);
289 lis3->write(lis3, CTRL_REG3, (ctrl_reg_data &
290 ~(LIS3_IRQ1_MASK | LIS3_IRQ2_MASK)) |
291 (LIS3_IRQ1_DATA_READY | LIS3_IRQ2_DATA_READY));
292 }
293
AnilKumar Ch0bf5a8b2012-08-22 12:00:39 +0530294 if ((lis3->whoami == WAI_3DC) || (lis3->whoami == WAI_3DLH)) {
Takashi Iwai78537c32010-09-23 10:01:39 -0700295 ctlreg = CTRL_REG4;
296 selftest = CTRL4_ST0;
297 } else {
298 ctlreg = CTRL_REG1;
Éric Piel895c1562011-10-31 17:11:05 -0700299 if (lis3->whoami == WAI_12B)
Takashi Iwai78537c32010-09-23 10:01:39 -0700300 selftest = CTRL1_ST;
301 else
302 selftest = CTRL1_STP;
303 }
Samu Onkalo2db4a762009-12-14 18:01:43 -0800304
Takashi Iwai78537c32010-09-23 10:01:39 -0700305 lis3->read(lis3, ctlreg, &reg);
306 lis3->write(lis3, ctlreg, (reg | selftest));
Éric Piel1510dd52011-10-31 17:10:31 -0700307 ret = lis3lv02d_get_pwron_wait(lis3);
308 if (ret)
309 goto fail;
Samu Onkalo2db4a762009-12-14 18:01:43 -0800310
311 /* Read directly to avoid axis remap */
312 x = lis3->read_data(lis3, OUTX);
313 y = lis3->read_data(lis3, OUTY);
314 z = lis3->read_data(lis3, OUTZ);
315
316 /* back to normal settings */
Takashi Iwai78537c32010-09-23 10:01:39 -0700317 lis3->write(lis3, ctlreg, reg);
Éric Piel1510dd52011-10-31 17:10:31 -0700318 ret = lis3lv02d_get_pwron_wait(lis3);
319 if (ret)
320 goto fail;
Samu Onkalo2db4a762009-12-14 18:01:43 -0800321
322 results[0] = x - lis3->read_data(lis3, OUTX);
323 results[1] = y - lis3->read_data(lis3, OUTY);
324 results[2] = z - lis3->read_data(lis3, OUTZ);
325
326 ret = 0;
Samu Onkalo029756d2010-10-22 07:57:32 -0400327
Éric Piel895c1562011-10-31 17:11:05 -0700328 if (lis3->whoami == WAI_8B) {
Samu Onkalo029756d2010-10-22 07:57:32 -0400329 /* Restore original interrupt configuration */
Éric Piel895c1562011-10-31 17:11:05 -0700330 atomic_dec(&lis3->wake_thread);
Samu Onkalo029756d2010-10-22 07:57:32 -0400331 lis3->write(lis3, CTRL_REG3, ctrl_reg_data);
332 lis3->irq_cfg = irq_cfg;
333
334 if ((irq_cfg & LIS3_IRQ1_MASK) &&
335 lis3->data_ready_count[IRQ_LINE0] < 2) {
336 ret = SELFTEST_IRQ;
337 goto fail;
338 }
339
340 if ((irq_cfg & LIS3_IRQ2_MASK) &&
341 lis3->data_ready_count[IRQ_LINE1] < 2) {
342 ret = SELFTEST_IRQ;
343 goto fail;
344 }
345 }
346
Samu Onkalo2db4a762009-12-14 18:01:43 -0800347 if (lis3->pdata) {
348 int i;
349 for (i = 0; i < 3; i++) {
350 /* Check against selftest acceptance limits */
351 if ((results[i] < lis3->pdata->st_min_limits[i]) ||
352 (results[i] > lis3->pdata->st_max_limits[i])) {
Samu Onkalo029756d2010-10-22 07:57:32 -0400353 ret = SELFTEST_FAIL;
Samu Onkalo2db4a762009-12-14 18:01:43 -0800354 goto fail;
355 }
356 }
357 }
358
359 /* test passed */
360fail:
361 mutex_unlock(&lis3->mutex);
362 return ret;
363}
364
Samu Onkalof9deb412010-10-22 07:57:24 -0400365/*
366 * Order of registers in the list affects to order of the restore process.
367 * Perhaps it is a good idea to set interrupt enable register as a last one
368 * after all other configurations
369 */
370static u8 lis3_wai8_regs[] = { FF_WU_CFG_1, FF_WU_THS_1, FF_WU_DURATION_1,
371 FF_WU_CFG_2, FF_WU_THS_2, FF_WU_DURATION_2,
372 CLICK_CFG, CLICK_SRC, CLICK_THSY_X, CLICK_THSZ,
373 CLICK_TIMELIMIT, CLICK_LATENCY, CLICK_WINDOW,
374 CTRL_REG1, CTRL_REG2, CTRL_REG3};
375
376static u8 lis3_wai12_regs[] = {FF_WU_CFG, FF_WU_THS_L, FF_WU_THS_H,
377 FF_WU_DURATION, DD_CFG, DD_THSI_L, DD_THSI_H,
378 DD_THSE_L, DD_THSE_H,
379 CTRL_REG1, CTRL_REG3, CTRL_REG2};
380
381static inline void lis3_context_save(struct lis3lv02d *lis3)
382{
383 int i;
384 for (i = 0; i < lis3->regs_size; i++)
385 lis3->read(lis3, lis3->regs[i], &lis3->reg_cache[i]);
386 lis3->regs_stored = true;
387}
388
389static inline void lis3_context_restore(struct lis3lv02d *lis3)
390{
391 int i;
392 if (lis3->regs_stored)
393 for (i = 0; i < lis3->regs_size; i++)
394 lis3->write(lis3, lis3->regs[i], lis3->reg_cache[i]);
395}
396
Daniel Macka38da2e2009-03-31 15:24:32 -0700397void lis3lv02d_poweroff(struct lis3lv02d *lis3)
Pavel Machek455fbdd2008-11-12 13:27:02 -0800398{
Samu Onkalof9deb412010-10-22 07:57:24 -0400399 if (lis3->reg_ctrl)
400 lis3_context_save(lis3);
Eric Piela002ee82009-06-16 15:34:14 -0700401 /* disable X,Y,Z axis and power down */
402 lis3->write(lis3, CTRL_REG1, 0x00);
Samu Onkalof9deb412010-10-22 07:57:24 -0400403 if (lis3->reg_ctrl)
404 lis3->reg_ctrl(lis3, LIS3_REG_OFF);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800405}
Eric Pielcfce41a2009-01-09 16:41:01 -0800406EXPORT_SYMBOL_GPL(lis3lv02d_poweroff);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800407
Éric Piel1510dd52011-10-31 17:10:31 -0700408int lis3lv02d_poweron(struct lis3lv02d *lis3)
Pavel Machek455fbdd2008-11-12 13:27:02 -0800409{
Éric Piel1510dd52011-10-31 17:10:31 -0700410 int err;
Eric Piela002ee82009-06-16 15:34:14 -0700411 u8 reg;
412
413 lis3->init(lis3);
414
415 /*
416 * Common configuration
Éric Piel4b5d95b2009-12-14 18:01:40 -0800417 * BDU: (12 bits sensors only) LSB and MSB values are not updated until
418 * both have been read. So the value read will always be correct.
Samu Onkalo2a7fade2010-10-22 07:57:27 -0400419 * Set BOOT bit to refresh factory tuning values.
Eric Piela002ee82009-06-16 15:34:14 -0700420 */
Takashi Iwai05faadc2011-10-03 18:09:14 -0700421 if (lis3->pdata) {
422 lis3->read(lis3, CTRL_REG2, &reg);
423 if (lis3->whoami == WAI_12B)
424 reg |= CTRL2_BDU | CTRL2_BOOT;
AnilKumar Ch0bf5a8b2012-08-22 12:00:39 +0530425 else if (lis3->whoami == WAI_3DLH)
426 reg |= CTRL2_BOOT_3DLH;
Takashi Iwai05faadc2011-10-03 18:09:14 -0700427 else
428 reg |= CTRL2_BOOT_8B;
429 lis3->write(lis3, CTRL_REG2, reg);
AnilKumar Ch0bf5a8b2012-08-22 12:00:39 +0530430
431 if (lis3->whoami == WAI_3DLH) {
432 lis3->read(lis3, CTRL_REG4, &reg);
433 reg |= CTRL4_BDU;
434 lis3->write(lis3, CTRL_REG4, reg);
435 }
Takashi Iwai05faadc2011-10-03 18:09:14 -0700436 }
Samu Onkalo2a7fade2010-10-22 07:57:27 -0400437
Éric Piel1510dd52011-10-31 17:10:31 -0700438 err = lis3lv02d_get_pwron_wait(lis3);
439 if (err)
440 return err;
Samu Onkalo2a7fade2010-10-22 07:57:27 -0400441
Samu Onkalof9deb412010-10-22 07:57:24 -0400442 if (lis3->reg_ctrl)
443 lis3_context_restore(lis3);
Éric Piel1510dd52011-10-31 17:10:31 -0700444
445 return 0;
Pavel Machek455fbdd2008-11-12 13:27:02 -0800446}
Eric Pielcfce41a2009-01-09 16:41:01 -0800447EXPORT_SYMBOL_GPL(lis3lv02d_poweron);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800448
Pavel Machek455fbdd2008-11-12 13:27:02 -0800449
Samu Onkalo6d94d402010-05-24 14:33:37 -0700450static void lis3lv02d_joystick_poll(struct input_polled_dev *pidev)
451{
Éric Piel895c1562011-10-31 17:11:05 -0700452 struct lis3lv02d *lis3 = pidev->private;
Samu Onkalo6d94d402010-05-24 14:33:37 -0700453 int x, y, z;
454
Éric Piel895c1562011-10-31 17:11:05 -0700455 mutex_lock(&lis3->mutex);
456 lis3lv02d_get_xyz(lis3, &x, &y, &z);
Samu Onkalo6d94d402010-05-24 14:33:37 -0700457 input_report_abs(pidev->input, ABS_X, x);
458 input_report_abs(pidev->input, ABS_Y, y);
459 input_report_abs(pidev->input, ABS_Z, z);
460 input_sync(pidev->input);
Éric Piel895c1562011-10-31 17:11:05 -0700461 mutex_unlock(&lis3->mutex);
Samu Onkalo6d94d402010-05-24 14:33:37 -0700462}
463
Samu Onkalo2a346992010-10-22 07:57:23 -0400464static void lis3lv02d_joystick_open(struct input_polled_dev *pidev)
465{
Éric Piel895c1562011-10-31 17:11:05 -0700466 struct lis3lv02d *lis3 = pidev->private;
Samu Onkaloe7261112010-10-22 07:57:25 -0400467
Éric Piel895c1562011-10-31 17:11:05 -0700468 if (lis3->pm_dev)
469 pm_runtime_get_sync(lis3->pm_dev);
470
471 if (lis3->pdata && lis3->whoami == WAI_8B && lis3->idev)
472 atomic_set(&lis3->wake_thread, 1);
Samu Onkalo821f6642010-10-22 07:57:26 -0400473 /*
474 * Update coordinates for the case where poll interval is 0 and
475 * the chip in running purely under interrupt control
476 */
477 lis3lv02d_joystick_poll(pidev);
Samu Onkalo2a346992010-10-22 07:57:23 -0400478}
479
480static void lis3lv02d_joystick_close(struct input_polled_dev *pidev)
481{
Éric Piel895c1562011-10-31 17:11:05 -0700482 struct lis3lv02d *lis3 = pidev->private;
483
484 atomic_set(&lis3->wake_thread, 0);
485 if (lis3->pm_dev)
486 pm_runtime_put(lis3->pm_dev);
Samu Onkalo2a346992010-10-22 07:57:23 -0400487}
488
Éric Piel895c1562011-10-31 17:11:05 -0700489static irqreturn_t lis302dl_interrupt(int irq, void *data)
Pavel Machekef2cfc72009-02-18 14:48:23 -0800490{
Éric Piel895c1562011-10-31 17:11:05 -0700491 struct lis3lv02d *lis3 = data;
492
493 if (!test_bit(0, &lis3->misc_opened))
Samu Onkalo92ba4fe2010-05-24 14:33:36 -0700494 goto out;
495
Pavel Machekef2cfc72009-02-18 14:48:23 -0800496 /*
497 * Be careful: on some HP laptops the bios force DD when on battery and
498 * the lid is closed. This leads to interrupts as soon as a little move
499 * is done.
500 */
Éric Piel895c1562011-10-31 17:11:05 -0700501 atomic_inc(&lis3->count);
Pavel Machekef2cfc72009-02-18 14:48:23 -0800502
Éric Piel895c1562011-10-31 17:11:05 -0700503 wake_up_interruptible(&lis3->misc_wait);
504 kill_fasync(&lis3->async_queue, SIGIO, POLL_IN);
Samu Onkalo92ba4fe2010-05-24 14:33:36 -0700505out:
Éric Piel895c1562011-10-31 17:11:05 -0700506 if (atomic_read(&lis3->wake_thread))
Samu Onkalo92ba4fe2010-05-24 14:33:36 -0700507 return IRQ_WAKE_THREAD;
508 return IRQ_HANDLED;
509}
510
Samu Onkalo6d94d402010-05-24 14:33:37 -0700511static void lis302dl_interrupt_handle_click(struct lis3lv02d *lis3)
512{
513 struct input_dev *dev = lis3->idev->input;
514 u8 click_src;
515
516 mutex_lock(&lis3->mutex);
517 lis3->read(lis3, CLICK_SRC, &click_src);
518
519 if (click_src & CLICK_SINGLE_X) {
520 input_report_key(dev, lis3->mapped_btns[0], 1);
521 input_report_key(dev, lis3->mapped_btns[0], 0);
522 }
523
524 if (click_src & CLICK_SINGLE_Y) {
525 input_report_key(dev, lis3->mapped_btns[1], 1);
526 input_report_key(dev, lis3->mapped_btns[1], 0);
527 }
528
529 if (click_src & CLICK_SINGLE_Z) {
530 input_report_key(dev, lis3->mapped_btns[2], 1);
531 input_report_key(dev, lis3->mapped_btns[2], 0);
532 }
533 input_sync(dev);
534 mutex_unlock(&lis3->mutex);
535}
536
Samu Onkalo029756d2010-10-22 07:57:32 -0400537static inline void lis302dl_data_ready(struct lis3lv02d *lis3, int index)
538{
539 int dummy;
540
541 /* Dummy read to ack interrupt */
542 lis3lv02d_get_xyz(lis3, &dummy, &dummy, &dummy);
543 lis3->data_ready_count[index]++;
544}
545
Samu Onkalo92ba4fe2010-05-24 14:33:36 -0700546static irqreturn_t lis302dl_interrupt_thread1_8b(int irq, void *data)
547{
Samu Onkalo6d94d402010-05-24 14:33:37 -0700548 struct lis3lv02d *lis3 = data;
Samu Onkalo029756d2010-10-22 07:57:32 -0400549 u8 irq_cfg = lis3->irq_cfg & LIS3_IRQ1_MASK;
Samu Onkalo6d94d402010-05-24 14:33:37 -0700550
Samu Onkalo029756d2010-10-22 07:57:32 -0400551 if (irq_cfg == LIS3_IRQ1_CLICK)
Samu Onkalo6d94d402010-05-24 14:33:37 -0700552 lis302dl_interrupt_handle_click(lis3);
Samu Onkalo029756d2010-10-22 07:57:32 -0400553 else if (unlikely(irq_cfg == LIS3_IRQ1_DATA_READY))
554 lis302dl_data_ready(lis3, IRQ_LINE0);
Samu Onkalo6d94d402010-05-24 14:33:37 -0700555 else
Samu Onkaloe7261112010-10-22 07:57:25 -0400556 lis3lv02d_joystick_poll(lis3->idev);
Samu Onkalo6d94d402010-05-24 14:33:37 -0700557
Samu Onkalo92ba4fe2010-05-24 14:33:36 -0700558 return IRQ_HANDLED;
559}
560
561static irqreturn_t lis302dl_interrupt_thread2_8b(int irq, void *data)
562{
Samu Onkalo6d94d402010-05-24 14:33:37 -0700563 struct lis3lv02d *lis3 = data;
Samu Onkalo029756d2010-10-22 07:57:32 -0400564 u8 irq_cfg = lis3->irq_cfg & LIS3_IRQ2_MASK;
Samu Onkalo6d94d402010-05-24 14:33:37 -0700565
Samu Onkalo029756d2010-10-22 07:57:32 -0400566 if (irq_cfg == LIS3_IRQ2_CLICK)
Samu Onkalo6d94d402010-05-24 14:33:37 -0700567 lis302dl_interrupt_handle_click(lis3);
Samu Onkalo029756d2010-10-22 07:57:32 -0400568 else if (unlikely(irq_cfg == LIS3_IRQ2_DATA_READY))
569 lis302dl_data_ready(lis3, IRQ_LINE1);
Samu Onkalo6d94d402010-05-24 14:33:37 -0700570 else
Samu Onkaloe7261112010-10-22 07:57:25 -0400571 lis3lv02d_joystick_poll(lis3->idev);
Samu Onkalo6d94d402010-05-24 14:33:37 -0700572
Pavel Machekef2cfc72009-02-18 14:48:23 -0800573 return IRQ_HANDLED;
574}
575
576static int lis3lv02d_misc_open(struct inode *inode, struct file *file)
577{
Éric Piel895c1562011-10-31 17:11:05 -0700578 struct lis3lv02d *lis3 = container_of(file->private_data,
579 struct lis3lv02d, miscdev);
580
581 if (test_and_set_bit(0, &lis3->misc_opened))
Pavel Machekef2cfc72009-02-18 14:48:23 -0800582 return -EBUSY; /* already open */
583
Éric Piel895c1562011-10-31 17:11:05 -0700584 if (lis3->pm_dev)
585 pm_runtime_get_sync(lis3->pm_dev);
Samu Onkalo2a346992010-10-22 07:57:23 -0400586
Éric Piel895c1562011-10-31 17:11:05 -0700587 atomic_set(&lis3->count, 0);
Pavel Machekef2cfc72009-02-18 14:48:23 -0800588 return 0;
589}
590
591static int lis3lv02d_misc_release(struct inode *inode, struct file *file)
592{
Éric Piel895c1562011-10-31 17:11:05 -0700593 struct lis3lv02d *lis3 = container_of(file->private_data,
594 struct lis3lv02d, miscdev);
595
Éric Piel895c1562011-10-31 17:11:05 -0700596 clear_bit(0, &lis3->misc_opened); /* release the device */
597 if (lis3->pm_dev)
598 pm_runtime_put(lis3->pm_dev);
Pavel Machekef2cfc72009-02-18 14:48:23 -0800599 return 0;
600}
601
602static ssize_t lis3lv02d_misc_read(struct file *file, char __user *buf,
603 size_t count, loff_t *pos)
604{
Éric Piel895c1562011-10-31 17:11:05 -0700605 struct lis3lv02d *lis3 = container_of(file->private_data,
606 struct lis3lv02d, miscdev);
607
Pavel Machekef2cfc72009-02-18 14:48:23 -0800608 DECLARE_WAITQUEUE(wait, current);
609 u32 data;
610 unsigned char byte_data;
611 ssize_t retval = 1;
612
613 if (count < 1)
614 return -EINVAL;
615
Éric Piel895c1562011-10-31 17:11:05 -0700616 add_wait_queue(&lis3->misc_wait, &wait);
Pavel Machekef2cfc72009-02-18 14:48:23 -0800617 while (true) {
618 set_current_state(TASK_INTERRUPTIBLE);
Éric Piel895c1562011-10-31 17:11:05 -0700619 data = atomic_xchg(&lis3->count, 0);
Pavel Machekef2cfc72009-02-18 14:48:23 -0800620 if (data)
621 break;
622
623 if (file->f_flags & O_NONBLOCK) {
624 retval = -EAGAIN;
625 goto out;
626 }
627
628 if (signal_pending(current)) {
629 retval = -ERESTARTSYS;
630 goto out;
631 }
632
633 schedule();
634 }
635
636 if (data < 255)
637 byte_data = data;
638 else
639 byte_data = 255;
640
641 /* make sure we are not going into copy_to_user() with
642 * TASK_INTERRUPTIBLE state */
643 set_current_state(TASK_RUNNING);
644 if (copy_to_user(buf, &byte_data, sizeof(byte_data)))
645 retval = -EFAULT;
646
647out:
648 __set_current_state(TASK_RUNNING);
Éric Piel895c1562011-10-31 17:11:05 -0700649 remove_wait_queue(&lis3->misc_wait, &wait);
Pavel Machekef2cfc72009-02-18 14:48:23 -0800650
651 return retval;
652}
653
Al Viroafc9a422017-07-03 06:39:46 -0400654static __poll_t lis3lv02d_misc_poll(struct file *file, poll_table *wait)
Pavel Machekef2cfc72009-02-18 14:48:23 -0800655{
Éric Piel895c1562011-10-31 17:11:05 -0700656 struct lis3lv02d *lis3 = container_of(file->private_data,
657 struct lis3lv02d, miscdev);
658
659 poll_wait(file, &lis3->misc_wait, wait);
660 if (atomic_read(&lis3->count))
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800661 return EPOLLIN | EPOLLRDNORM;
Pavel Machekef2cfc72009-02-18 14:48:23 -0800662 return 0;
663}
664
665static int lis3lv02d_misc_fasync(int fd, struct file *file, int on)
666{
Éric Piel895c1562011-10-31 17:11:05 -0700667 struct lis3lv02d *lis3 = container_of(file->private_data,
668 struct lis3lv02d, miscdev);
669
670 return fasync_helper(fd, file, on, &lis3->async_queue);
Pavel Machekef2cfc72009-02-18 14:48:23 -0800671}
672
673static const struct file_operations lis3lv02d_misc_fops = {
674 .owner = THIS_MODULE,
675 .llseek = no_llseek,
676 .read = lis3lv02d_misc_read,
677 .open = lis3lv02d_misc_open,
678 .release = lis3lv02d_misc_release,
679 .poll = lis3lv02d_misc_poll,
680 .fasync = lis3lv02d_misc_fasync,
681};
682
Éric Piele1e56872011-10-31 17:11:02 -0700683int lis3lv02d_joystick_enable(struct lis3lv02d *lis3)
Pavel Machek455fbdd2008-11-12 13:27:02 -0800684{
Eric Pieldc6ea972009-06-16 15:34:15 -0700685 struct input_dev *input_dev;
Pavel Machek455fbdd2008-11-12 13:27:02 -0800686 int err;
Samu Onkalo32496c72009-12-14 18:01:46 -0800687 int max_val, fuzz, flat;
Samu Onkalo6d94d402010-05-24 14:33:37 -0700688 int btns[] = {BTN_X, BTN_Y, BTN_Z};
Pavel Machek455fbdd2008-11-12 13:27:02 -0800689
Éric Piel895c1562011-10-31 17:11:05 -0700690 if (lis3->idev)
Pavel Machek455fbdd2008-11-12 13:27:02 -0800691 return -EINVAL;
692
Éric Piel895c1562011-10-31 17:11:05 -0700693 lis3->idev = input_allocate_polled_device();
694 if (!lis3->idev)
Pavel Machek455fbdd2008-11-12 13:27:02 -0800695 return -ENOMEM;
696
Éric Piel895c1562011-10-31 17:11:05 -0700697 lis3->idev->poll = lis3lv02d_joystick_poll;
698 lis3->idev->open = lis3lv02d_joystick_open;
699 lis3->idev->close = lis3lv02d_joystick_close;
700 lis3->idev->poll_interval = MDPS_POLL_INTERVAL;
701 lis3->idev->poll_interval_min = MDPS_POLL_MIN;
702 lis3->idev->poll_interval_max = MDPS_POLL_MAX;
703 lis3->idev->private = lis3;
704 input_dev = lis3->idev->input;
Eric Pieldc6ea972009-06-16 15:34:15 -0700705
Eric Pieldc6ea972009-06-16 15:34:15 -0700706 input_dev->name = "ST LIS3LV02DL Accelerometer";
707 input_dev->phys = DRIVER_NAME "/input0";
708 input_dev->id.bustype = BUS_HOST;
709 input_dev->id.vendor = 0;
Éric Piel895c1562011-10-31 17:11:05 -0700710 input_dev->dev.parent = &lis3->pdev->dev;
Pavel Machek455fbdd2008-11-12 13:27:02 -0800711
Eric Pieldc6ea972009-06-16 15:34:15 -0700712 set_bit(EV_ABS, input_dev->evbit);
Éric Piel895c1562011-10-31 17:11:05 -0700713 max_val = (lis3->mdps_max_val * lis3->scale) / LIS3_ACCURACY;
714 if (lis3->whoami == WAI_12B) {
Samu Onkalo477bc912010-10-22 07:57:30 -0400715 fuzz = LIS3_DEFAULT_FUZZ_12B;
716 flat = LIS3_DEFAULT_FLAT_12B;
717 } else {
718 fuzz = LIS3_DEFAULT_FUZZ_8B;
719 flat = LIS3_DEFAULT_FLAT_8B;
720 }
Éric Piel895c1562011-10-31 17:11:05 -0700721 fuzz = (fuzz * lis3->scale) / LIS3_ACCURACY;
722 flat = (flat * lis3->scale) / LIS3_ACCURACY;
Samu Onkalo477bc912010-10-22 07:57:30 -0400723
Samu Onkalo32496c72009-12-14 18:01:46 -0800724 input_set_abs_params(input_dev, ABS_X, -max_val, max_val, fuzz, flat);
725 input_set_abs_params(input_dev, ABS_Y, -max_val, max_val, fuzz, flat);
726 input_set_abs_params(input_dev, ABS_Z, -max_val, max_val, fuzz, flat);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800727
Éric Piel895c1562011-10-31 17:11:05 -0700728 lis3->mapped_btns[0] = lis3lv02d_get_axis(abs(lis3->ac.x), btns);
729 lis3->mapped_btns[1] = lis3lv02d_get_axis(abs(lis3->ac.y), btns);
730 lis3->mapped_btns[2] = lis3lv02d_get_axis(abs(lis3->ac.z), btns);
Samu Onkalo6d94d402010-05-24 14:33:37 -0700731
Éric Piel895c1562011-10-31 17:11:05 -0700732 err = input_register_polled_device(lis3->idev);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800733 if (err) {
Éric Piel895c1562011-10-31 17:11:05 -0700734 input_free_polled_device(lis3->idev);
735 lis3->idev = NULL;
Pavel Machek455fbdd2008-11-12 13:27:02 -0800736 }
737
738 return err;
739}
Eric Pielcfce41a2009-01-09 16:41:01 -0800740EXPORT_SYMBOL_GPL(lis3lv02d_joystick_enable);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800741
Éric Piele1e56872011-10-31 17:11:02 -0700742void lis3lv02d_joystick_disable(struct lis3lv02d *lis3)
Pavel Machek455fbdd2008-11-12 13:27:02 -0800743{
Éric Piel895c1562011-10-31 17:11:05 -0700744 if (lis3->irq)
745 free_irq(lis3->irq, lis3);
746 if (lis3->pdata && lis3->pdata->irq2)
747 free_irq(lis3->pdata->irq2, lis3);
Samu Onkalo92ba4fe2010-05-24 14:33:36 -0700748
Éric Piel895c1562011-10-31 17:11:05 -0700749 if (!lis3->idev)
Pavel Machek455fbdd2008-11-12 13:27:02 -0800750 return;
751
Éric Piel895c1562011-10-31 17:11:05 -0700752 if (lis3->irq)
753 misc_deregister(&lis3->miscdev);
754 input_unregister_polled_device(lis3->idev);
755 input_free_polled_device(lis3->idev);
756 lis3->idev = NULL;
Pavel Machek455fbdd2008-11-12 13:27:02 -0800757}
Eric Pielcfce41a2009-01-09 16:41:01 -0800758EXPORT_SYMBOL_GPL(lis3lv02d_joystick_disable);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800759
Pavel Machek455fbdd2008-11-12 13:27:02 -0800760/* Sysfs stuff */
Samu Onkalo2a346992010-10-22 07:57:23 -0400761static void lis3lv02d_sysfs_poweron(struct lis3lv02d *lis3)
762{
763 /*
764 * SYSFS functions are fast visitors so put-call
765 * immediately after the get-call. However, keep
766 * chip running for a while and schedule delayed
767 * suspend. This way periodic sysfs calls doesn't
768 * suffer from relatively long power up time.
769 */
770
771 if (lis3->pm_dev) {
772 pm_runtime_get_sync(lis3->pm_dev);
773 pm_runtime_put_noidle(lis3->pm_dev);
774 pm_schedule_suspend(lis3->pm_dev, LIS3_SYSFS_POWERDOWN_DELAY);
775 }
776}
777
Samu Onkalo2db4a762009-12-14 18:01:43 -0800778static ssize_t lis3lv02d_selftest_show(struct device *dev,
779 struct device_attribute *attr, char *buf)
780{
Éric Piel895c1562011-10-31 17:11:05 -0700781 struct lis3lv02d *lis3 = dev_get_drvdata(dev);
Samu Onkalo2db4a762009-12-14 18:01:43 -0800782 s16 values[3];
783
Samu Onkalo029756d2010-10-22 07:57:32 -0400784 static const char ok[] = "OK";
785 static const char fail[] = "FAIL";
786 static const char irq[] = "FAIL_IRQ";
787 const char *res;
788
Éric Piel895c1562011-10-31 17:11:05 -0700789 lis3lv02d_sysfs_poweron(lis3);
790 switch (lis3lv02d_selftest(lis3, values)) {
Samu Onkalo029756d2010-10-22 07:57:32 -0400791 case SELFTEST_FAIL:
792 res = fail;
793 break;
794 case SELFTEST_IRQ:
795 res = irq;
796 break;
797 case SELFTEST_OK:
798 default:
799 res = ok;
800 break;
801 }
802 return sprintf(buf, "%s %d %d %d\n", res,
Samu Onkalo2db4a762009-12-14 18:01:43 -0800803 values[0], values[1], values[2]);
804}
805
Pavel Machek455fbdd2008-11-12 13:27:02 -0800806static ssize_t lis3lv02d_position_show(struct device *dev,
807 struct device_attribute *attr, char *buf)
808{
Éric Piel895c1562011-10-31 17:11:05 -0700809 struct lis3lv02d *lis3 = dev_get_drvdata(dev);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800810 int x, y, z;
811
Éric Piel895c1562011-10-31 17:11:05 -0700812 lis3lv02d_sysfs_poweron(lis3);
813 mutex_lock(&lis3->mutex);
814 lis3lv02d_get_xyz(lis3, &x, &y, &z);
815 mutex_unlock(&lis3->mutex);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800816 return sprintf(buf, "(%d,%d,%d)\n", x, y, z);
817}
818
Pavel Machek455fbdd2008-11-12 13:27:02 -0800819static ssize_t lis3lv02d_rate_show(struct device *dev,
820 struct device_attribute *attr, char *buf)
821{
Éric Piel895c1562011-10-31 17:11:05 -0700822 struct lis3lv02d *lis3 = dev_get_drvdata(dev);
823
824 lis3lv02d_sysfs_poweron(lis3);
825 return sprintf(buf, "%d\n", lis3lv02d_get_odr(lis3));
Pavel Machek455fbdd2008-11-12 13:27:02 -0800826}
827
Samu Onkaloa253aae2009-12-14 18:01:44 -0800828static ssize_t lis3lv02d_rate_set(struct device *dev,
829 struct device_attribute *attr, const char *buf,
830 size_t count)
831{
Éric Piel895c1562011-10-31 17:11:05 -0700832 struct lis3lv02d *lis3 = dev_get_drvdata(dev);
Samu Onkaloa253aae2009-12-14 18:01:44 -0800833 unsigned long rate;
Jingoo Hanf7b41272013-06-04 13:15:16 +0900834 int ret;
Samu Onkaloa253aae2009-12-14 18:01:44 -0800835
Jingoo Hanf7b41272013-06-04 13:15:16 +0900836 ret = kstrtoul(buf, 0, &rate);
837 if (ret)
838 return ret;
Samu Onkaloa253aae2009-12-14 18:01:44 -0800839
Éric Piel895c1562011-10-31 17:11:05 -0700840 lis3lv02d_sysfs_poweron(lis3);
841 if (lis3lv02d_set_odr(lis3, rate))
Samu Onkaloa253aae2009-12-14 18:01:44 -0800842 return -EINVAL;
843
844 return count;
845}
846
Samu Onkalo2db4a762009-12-14 18:01:43 -0800847static DEVICE_ATTR(selftest, S_IRUSR, lis3lv02d_selftest_show, NULL);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800848static DEVICE_ATTR(position, S_IRUGO, lis3lv02d_position_show, NULL);
Samu Onkaloa253aae2009-12-14 18:01:44 -0800849static DEVICE_ATTR(rate, S_IRUGO | S_IWUSR, lis3lv02d_rate_show,
850 lis3lv02d_rate_set);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800851
852static struct attribute *lis3lv02d_attributes[] = {
Samu Onkalo2db4a762009-12-14 18:01:43 -0800853 &dev_attr_selftest.attr,
Pavel Machek455fbdd2008-11-12 13:27:02 -0800854 &dev_attr_position.attr,
Pavel Machek455fbdd2008-11-12 13:27:02 -0800855 &dev_attr_rate.attr,
856 NULL
857};
858
Arvind Yadav27c08232017-08-04 12:07:56 +0530859static const struct attribute_group lis3lv02d_attribute_group = {
Pavel Machek455fbdd2008-11-12 13:27:02 -0800860 .attrs = lis3lv02d_attributes
861};
862
Eric Pielcfce41a2009-01-09 16:41:01 -0800863
Daniel Macka38da2e2009-03-31 15:24:32 -0700864static int lis3lv02d_add_fs(struct lis3lv02d *lis3)
Pavel Machek455fbdd2008-11-12 13:27:02 -0800865{
Eric Piela002ee82009-06-16 15:34:14 -0700866 lis3->pdev = platform_device_register_simple(DRIVER_NAME, -1, NULL, 0);
867 if (IS_ERR(lis3->pdev))
868 return PTR_ERR(lis3->pdev);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800869
Éric Piel895c1562011-10-31 17:11:05 -0700870 platform_set_drvdata(lis3->pdev, lis3);
Eric Piela002ee82009-06-16 15:34:14 -0700871 return sysfs_create_group(&lis3->pdev->dev.kobj, &lis3lv02d_attribute_group);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800872}
873
Eric Piela002ee82009-06-16 15:34:14 -0700874int lis3lv02d_remove_fs(struct lis3lv02d *lis3)
Pavel Machek455fbdd2008-11-12 13:27:02 -0800875{
Eric Piela002ee82009-06-16 15:34:14 -0700876 sysfs_remove_group(&lis3->pdev->dev.kobj, &lis3lv02d_attribute_group);
877 platform_device_unregister(lis3->pdev);
Samu Onkalo2a346992010-10-22 07:57:23 -0400878 if (lis3->pm_dev) {
879 /* Barrier after the sysfs remove */
880 pm_runtime_barrier(lis3->pm_dev);
881
882 /* SYSFS may have left chip running. Turn off if necessary */
883 if (!pm_runtime_suspended(lis3->pm_dev))
Éric Piel895c1562011-10-31 17:11:05 -0700884 lis3lv02d_poweroff(lis3);
Samu Onkalo2a346992010-10-22 07:57:23 -0400885
886 pm_runtime_disable(lis3->pm_dev);
887 pm_runtime_set_suspended(lis3->pm_dev);
888 }
Samu Onkalof9deb412010-10-22 07:57:24 -0400889 kfree(lis3->reg_cache);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800890 return 0;
891}
Eric Pielcfce41a2009-01-09 16:41:01 -0800892EXPORT_SYMBOL_GPL(lis3lv02d_remove_fs);
Pavel Machek455fbdd2008-11-12 13:27:02 -0800893
Éric Pield7f81d42011-10-31 17:10:58 -0700894static void lis3lv02d_8b_configure(struct lis3lv02d *lis3,
Samu Onkaloecc437a2010-05-24 14:33:34 -0700895 struct lis3lv02d_platform_data *p)
896{
Samu Onkalo92ba4fe2010-05-24 14:33:36 -0700897 int err;
Samu Onkalo342c5f12010-05-24 14:33:35 -0700898 int ctrl2 = p->hipass_ctrl;
899
Samu Onkaloecc437a2010-05-24 14:33:34 -0700900 if (p->click_flags) {
Éric Pield7f81d42011-10-31 17:10:58 -0700901 lis3->write(lis3, CLICK_CFG, p->click_flags);
902 lis3->write(lis3, CLICK_TIMELIMIT, p->click_time_limit);
903 lis3->write(lis3, CLICK_LATENCY, p->click_latency);
904 lis3->write(lis3, CLICK_WINDOW, p->click_window);
905 lis3->write(lis3, CLICK_THSZ, p->click_thresh_z & 0xf);
906 lis3->write(lis3, CLICK_THSY_X,
Samu Onkaloecc437a2010-05-24 14:33:34 -0700907 (p->click_thresh_x & 0xf) |
908 (p->click_thresh_y << 4));
Samu Onkalo6d94d402010-05-24 14:33:37 -0700909
Éric Pield7f81d42011-10-31 17:10:58 -0700910 if (lis3->idev) {
Éric Piel895c1562011-10-31 17:11:05 -0700911 struct input_dev *input_dev = lis3->idev->input;
Samu Onkalo6d94d402010-05-24 14:33:37 -0700912 input_set_capability(input_dev, EV_KEY, BTN_X);
913 input_set_capability(input_dev, EV_KEY, BTN_Y);
914 input_set_capability(input_dev, EV_KEY, BTN_Z);
915 }
Samu Onkaloecc437a2010-05-24 14:33:34 -0700916 }
917
918 if (p->wakeup_flags) {
Éric Pield7f81d42011-10-31 17:10:58 -0700919 lis3->write(lis3, FF_WU_CFG_1, p->wakeup_flags);
920 lis3->write(lis3, FF_WU_THS_1, p->wakeup_thresh & 0x7f);
Samu Onkalocc23aa12010-10-22 07:57:29 -0400921 /* pdata value + 1 to keep this backward compatible*/
Éric Pield7f81d42011-10-31 17:10:58 -0700922 lis3->write(lis3, FF_WU_DURATION_1, p->duration1 + 1);
Samu Onkalo342c5f12010-05-24 14:33:35 -0700923 ctrl2 ^= HP_FF_WU1; /* Xor to keep compatible with old pdata*/
Samu Onkaloecc437a2010-05-24 14:33:34 -0700924 }
Samu Onkalo342c5f12010-05-24 14:33:35 -0700925
926 if (p->wakeup_flags2) {
Éric Pield7f81d42011-10-31 17:10:58 -0700927 lis3->write(lis3, FF_WU_CFG_2, p->wakeup_flags2);
928 lis3->write(lis3, FF_WU_THS_2, p->wakeup_thresh2 & 0x7f);
Samu Onkalocc23aa12010-10-22 07:57:29 -0400929 /* pdata value + 1 to keep this backward compatible*/
Éric Pield7f81d42011-10-31 17:10:58 -0700930 lis3->write(lis3, FF_WU_DURATION_2, p->duration2 + 1);
Samu Onkalo342c5f12010-05-24 14:33:35 -0700931 ctrl2 ^= HP_FF_WU2; /* Xor to keep compatible with old pdata*/
932 }
933 /* Configure hipass filters */
Éric Pield7f81d42011-10-31 17:10:58 -0700934 lis3->write(lis3, CTRL_REG2, ctrl2);
Samu Onkalo92ba4fe2010-05-24 14:33:36 -0700935
936 if (p->irq2) {
937 err = request_threaded_irq(p->irq2,
938 NULL,
939 lis302dl_interrupt_thread2_8b,
Samu Onkalocc23aa12010-10-22 07:57:29 -0400940 IRQF_TRIGGER_RISING | IRQF_ONESHOT |
941 (p->irq_flags2 & IRQF_TRIGGER_MASK),
Éric Piel895c1562011-10-31 17:11:05 -0700942 DRIVER_NAME, lis3);
Samu Onkalo92ba4fe2010-05-24 14:33:36 -0700943 if (err < 0)
Joe Perches63366d32010-10-20 06:51:40 +0000944 pr_err("No second IRQ. Limited functionality\n");
Samu Onkalo92ba4fe2010-05-24 14:33:36 -0700945 }
Samu Onkaloecc437a2010-05-24 14:33:34 -0700946}
947
Daniel Mackcbac1a82012-09-26 13:58:16 -0700948#ifdef CONFIG_OF
AnilKumar Ch0c83adb2012-09-26 13:58:21 -0700949int lis3lv02d_init_dt(struct lis3lv02d *lis3)
Daniel Mackcbac1a82012-09-26 13:58:16 -0700950{
951 struct lis3lv02d_platform_data *pdata;
952 struct device_node *np = lis3->of_node;
953 u32 val;
Sebastian Reichelcdcd6f82015-03-27 15:39:43 +0100954 s32 sval;
Daniel Mackcbac1a82012-09-26 13:58:16 -0700955
956 if (!lis3->of_node)
957 return 0;
958
959 pdata = kzalloc(sizeof(*pdata), GFP_KERNEL);
960 if (!pdata)
961 return -ENOMEM;
962
963 if (of_get_property(np, "st,click-single-x", NULL))
964 pdata->click_flags |= LIS3_CLICK_SINGLE_X;
965 if (of_get_property(np, "st,click-double-x", NULL))
966 pdata->click_flags |= LIS3_CLICK_DOUBLE_X;
967
968 if (of_get_property(np, "st,click-single-y", NULL))
969 pdata->click_flags |= LIS3_CLICK_SINGLE_Y;
970 if (of_get_property(np, "st,click-double-y", NULL))
971 pdata->click_flags |= LIS3_CLICK_DOUBLE_Y;
972
973 if (of_get_property(np, "st,click-single-z", NULL))
974 pdata->click_flags |= LIS3_CLICK_SINGLE_Z;
975 if (of_get_property(np, "st,click-double-z", NULL))
976 pdata->click_flags |= LIS3_CLICK_DOUBLE_Z;
977
978 if (!of_property_read_u32(np, "st,click-threshold-x", &val))
979 pdata->click_thresh_x = val;
980 if (!of_property_read_u32(np, "st,click-threshold-y", &val))
981 pdata->click_thresh_y = val;
982 if (!of_property_read_u32(np, "st,click-threshold-z", &val))
983 pdata->click_thresh_z = val;
984
985 if (!of_property_read_u32(np, "st,click-time-limit", &val))
986 pdata->click_time_limit = val;
987 if (!of_property_read_u32(np, "st,click-latency", &val))
988 pdata->click_latency = val;
989 if (!of_property_read_u32(np, "st,click-window", &val))
990 pdata->click_window = val;
991
992 if (of_get_property(np, "st,irq1-disable", NULL))
993 pdata->irq_cfg |= LIS3_IRQ1_DISABLE;
994 if (of_get_property(np, "st,irq1-ff-wu-1", NULL))
995 pdata->irq_cfg |= LIS3_IRQ1_FF_WU_1;
996 if (of_get_property(np, "st,irq1-ff-wu-2", NULL))
997 pdata->irq_cfg |= LIS3_IRQ1_FF_WU_2;
998 if (of_get_property(np, "st,irq1-data-ready", NULL))
999 pdata->irq_cfg |= LIS3_IRQ1_DATA_READY;
1000 if (of_get_property(np, "st,irq1-click", NULL))
1001 pdata->irq_cfg |= LIS3_IRQ1_CLICK;
1002
1003 if (of_get_property(np, "st,irq2-disable", NULL))
1004 pdata->irq_cfg |= LIS3_IRQ2_DISABLE;
1005 if (of_get_property(np, "st,irq2-ff-wu-1", NULL))
1006 pdata->irq_cfg |= LIS3_IRQ2_FF_WU_1;
1007 if (of_get_property(np, "st,irq2-ff-wu-2", NULL))
1008 pdata->irq_cfg |= LIS3_IRQ2_FF_WU_2;
1009 if (of_get_property(np, "st,irq2-data-ready", NULL))
1010 pdata->irq_cfg |= LIS3_IRQ2_DATA_READY;
1011 if (of_get_property(np, "st,irq2-click", NULL))
1012 pdata->irq_cfg |= LIS3_IRQ2_CLICK;
1013
1014 if (of_get_property(np, "st,irq-open-drain", NULL))
1015 pdata->irq_cfg |= LIS3_IRQ_OPEN_DRAIN;
1016 if (of_get_property(np, "st,irq-active-low", NULL))
1017 pdata->irq_cfg |= LIS3_IRQ_ACTIVE_LOW;
1018
1019 if (!of_property_read_u32(np, "st,wu-duration-1", &val))
1020 pdata->duration1 = val;
1021 if (!of_property_read_u32(np, "st,wu-duration-2", &val))
1022 pdata->duration2 = val;
1023
1024 if (of_get_property(np, "st,wakeup-x-lo", NULL))
1025 pdata->wakeup_flags |= LIS3_WAKEUP_X_LO;
1026 if (of_get_property(np, "st,wakeup-x-hi", NULL))
1027 pdata->wakeup_flags |= LIS3_WAKEUP_X_HI;
1028 if (of_get_property(np, "st,wakeup-y-lo", NULL))
1029 pdata->wakeup_flags |= LIS3_WAKEUP_Y_LO;
1030 if (of_get_property(np, "st,wakeup-y-hi", NULL))
1031 pdata->wakeup_flags |= LIS3_WAKEUP_Y_HI;
1032 if (of_get_property(np, "st,wakeup-z-lo", NULL))
1033 pdata->wakeup_flags |= LIS3_WAKEUP_Z_LO;
1034 if (of_get_property(np, "st,wakeup-z-hi", NULL))
1035 pdata->wakeup_flags |= LIS3_WAKEUP_Z_HI;
Sebastian Reichelc5131a32015-03-27 15:39:44 +01001036 if (of_get_property(np, "st,wakeup-threshold", &val))
1037 pdata->wakeup_thresh = val;
1038
1039 if (of_get_property(np, "st,wakeup2-x-lo", NULL))
1040 pdata->wakeup_flags2 |= LIS3_WAKEUP_X_LO;
1041 if (of_get_property(np, "st,wakeup2-x-hi", NULL))
1042 pdata->wakeup_flags2 |= LIS3_WAKEUP_X_HI;
1043 if (of_get_property(np, "st,wakeup2-y-lo", NULL))
1044 pdata->wakeup_flags2 |= LIS3_WAKEUP_Y_LO;
1045 if (of_get_property(np, "st,wakeup2-y-hi", NULL))
1046 pdata->wakeup_flags2 |= LIS3_WAKEUP_Y_HI;
1047 if (of_get_property(np, "st,wakeup2-z-lo", NULL))
1048 pdata->wakeup_flags2 |= LIS3_WAKEUP_Z_LO;
1049 if (of_get_property(np, "st,wakeup2-z-hi", NULL))
1050 pdata->wakeup_flags2 |= LIS3_WAKEUP_Z_HI;
1051 if (of_get_property(np, "st,wakeup2-threshold", &val))
1052 pdata->wakeup_thresh2 = val;
Daniel Mackcbac1a82012-09-26 13:58:16 -07001053
1054 if (!of_property_read_u32(np, "st,highpass-cutoff-hz", &val)) {
1055 switch (val) {
1056 case 1:
1057 pdata->hipass_ctrl = LIS3_HIPASS_CUTFF_1HZ;
1058 break;
1059 case 2:
1060 pdata->hipass_ctrl = LIS3_HIPASS_CUTFF_2HZ;
1061 break;
1062 case 4:
1063 pdata->hipass_ctrl = LIS3_HIPASS_CUTFF_4HZ;
1064 break;
1065 case 8:
1066 pdata->hipass_ctrl = LIS3_HIPASS_CUTFF_8HZ;
1067 break;
1068 }
1069 }
1070
1071 if (of_get_property(np, "st,hipass1-disable", NULL))
1072 pdata->hipass_ctrl |= LIS3_HIPASS1_DISABLE;
1073 if (of_get_property(np, "st,hipass2-disable", NULL))
1074 pdata->hipass_ctrl |= LIS3_HIPASS2_DISABLE;
1075
Sebastian Reichelcdcd6f82015-03-27 15:39:43 +01001076 if (of_property_read_s32(np, "st,axis-x", &sval) == 0)
1077 pdata->axis_x = sval;
1078 if (of_property_read_s32(np, "st,axis-y", &sval) == 0)
1079 pdata->axis_y = sval;
1080 if (of_property_read_s32(np, "st,axis-z", &sval) == 0)
1081 pdata->axis_z = sval;
Daniel Mackcbac1a82012-09-26 13:58:16 -07001082
1083 if (of_get_property(np, "st,default-rate", NULL))
1084 pdata->default_rate = val;
1085
Sebastian Reichelcdcd6f82015-03-27 15:39:43 +01001086 if (of_property_read_s32(np, "st,min-limit-x", &sval) == 0)
1087 pdata->st_min_limits[0] = sval;
1088 if (of_property_read_s32(np, "st,min-limit-y", &sval) == 0)
1089 pdata->st_min_limits[1] = sval;
1090 if (of_property_read_s32(np, "st,min-limit-z", &sval) == 0)
1091 pdata->st_min_limits[2] = sval;
Daniel Mackcbac1a82012-09-26 13:58:16 -07001092
Sebastian Reichelcdcd6f82015-03-27 15:39:43 +01001093 if (of_property_read_s32(np, "st,max-limit-x", &sval) == 0)
1094 pdata->st_max_limits[0] = sval;
1095 if (of_property_read_s32(np, "st,max-limit-y", &sval) == 0)
1096 pdata->st_max_limits[1] = sval;
1097 if (of_property_read_s32(np, "st,max-limit-z", &sval) == 0)
1098 pdata->st_max_limits[2] = sval;
Daniel Mackcbac1a82012-09-26 13:58:16 -07001099
1100
1101 lis3->pdata = pdata;
1102
1103 return 0;
1104}
1105
1106#else
AnilKumar Ch0c83adb2012-09-26 13:58:21 -07001107int lis3lv02d_init_dt(struct lis3lv02d *lis3)
Daniel Mackcbac1a82012-09-26 13:58:16 -07001108{
1109 return 0;
1110}
1111#endif
1112EXPORT_SYMBOL_GPL(lis3lv02d_init_dt);
1113
Daniel Mackab337a62009-03-31 15:24:31 -07001114/*
1115 * Initialise the accelerometer and the various subsystems.
Éric Pielbc62c142009-12-14 18:01:39 -08001116 * Should be rather independent of the bus system.
Daniel Mackab337a62009-03-31 15:24:31 -07001117 */
Éric Pield7f81d42011-10-31 17:10:58 -07001118int lis3lv02d_init_device(struct lis3lv02d *lis3)
Daniel Mackab337a62009-03-31 15:24:31 -07001119{
Samu Onkalo92ba4fe2010-05-24 14:33:36 -07001120 int err;
1121 irq_handler_t thread_fn;
Samu Onkalocc23aa12010-10-22 07:57:29 -04001122 int irq_flags = 0;
Samu Onkalo92ba4fe2010-05-24 14:33:36 -07001123
Éric Pield7f81d42011-10-31 17:10:58 -07001124 lis3->whoami = lis3lv02d_read_8(lis3, WHO_AM_I);
Daniel Macka38da2e2009-03-31 15:24:32 -07001125
Éric Pield7f81d42011-10-31 17:10:58 -07001126 switch (lis3->whoami) {
Éric Pielbc62c142009-12-14 18:01:39 -08001127 case WAI_12B:
Joe Perches63366d32010-10-20 06:51:40 +00001128 pr_info("12 bits sensor found\n");
Éric Pield7f81d42011-10-31 17:10:58 -07001129 lis3->read_data = lis3lv02d_read_12;
1130 lis3->mdps_max_val = 2048;
1131 lis3->pwron_delay = LIS3_PWRON_DELAY_WAI_12B;
1132 lis3->odrs = lis3_12_rates;
1133 lis3->odr_mask = CTRL1_DF0 | CTRL1_DF1;
1134 lis3->scale = LIS3_SENSITIVITY_12B;
1135 lis3->regs = lis3_wai12_regs;
1136 lis3->regs_size = ARRAY_SIZE(lis3_wai12_regs);
Daniel Macka38da2e2009-03-31 15:24:32 -07001137 break;
Éric Pielbc62c142009-12-14 18:01:39 -08001138 case WAI_8B:
Joe Perches63366d32010-10-20 06:51:40 +00001139 pr_info("8 bits sensor found\n");
Éric Pield7f81d42011-10-31 17:10:58 -07001140 lis3->read_data = lis3lv02d_read_8;
1141 lis3->mdps_max_val = 128;
1142 lis3->pwron_delay = LIS3_PWRON_DELAY_WAI_8B;
1143 lis3->odrs = lis3_8_rates;
1144 lis3->odr_mask = CTRL1_DR;
1145 lis3->scale = LIS3_SENSITIVITY_8B;
1146 lis3->regs = lis3_wai8_regs;
1147 lis3->regs_size = ARRAY_SIZE(lis3_wai8_regs);
Daniel Macka38da2e2009-03-31 15:24:32 -07001148 break;
Takashi Iwai78537c32010-09-23 10:01:39 -07001149 case WAI_3DC:
Joe Perches63366d32010-10-20 06:51:40 +00001150 pr_info("8 bits 3DC sensor found\n");
Éric Pield7f81d42011-10-31 17:10:58 -07001151 lis3->read_data = lis3lv02d_read_8;
1152 lis3->mdps_max_val = 128;
1153 lis3->pwron_delay = LIS3_PWRON_DELAY_WAI_8B;
1154 lis3->odrs = lis3_3dc_rates;
1155 lis3->odr_mask = CTRL1_ODR0|CTRL1_ODR1|CTRL1_ODR2|CTRL1_ODR3;
1156 lis3->scale = LIS3_SENSITIVITY_8B;
Takashi Iwai78537c32010-09-23 10:01:39 -07001157 break;
AnilKumar Ch0bf5a8b2012-08-22 12:00:39 +05301158 case WAI_3DLH:
AnilKumar Che2b2ed82012-09-24 14:53:49 +05301159 pr_info("16 bits lis331dlh sensor found\n");
1160 lis3->read_data = lis331dlh_read_data;
AnilKumar Ch0bf5a8b2012-08-22 12:00:39 +05301161 lis3->mdps_max_val = 2048; /* 12 bits for 2G */
1162 lis3->shift_adj = SHIFT_ADJ_2G;
1163 lis3->pwron_delay = LIS3_PWRON_DELAY_WAI_8B;
1164 lis3->odrs = lis3_3dlh_rates;
1165 lis3->odr_mask = CTRL1_DR0 | CTRL1_DR1;
1166 lis3->scale = LIS3DLH_SENSITIVITY_2G;
1167 break;
Daniel Macka38da2e2009-03-31 15:24:32 -07001168 default:
Éric Pield7f81d42011-10-31 17:10:58 -07001169 pr_err("unknown sensor type 0x%X\n", lis3->whoami);
Daniel Macka38da2e2009-03-31 15:24:32 -07001170 return -EINVAL;
1171 }
1172
Éric Pield7f81d42011-10-31 17:10:58 -07001173 lis3->reg_cache = kzalloc(max(sizeof(lis3_wai8_regs),
Samu Onkalof9deb412010-10-22 07:57:24 -04001174 sizeof(lis3_wai12_regs)), GFP_KERNEL);
1175
Éric Pield7f81d42011-10-31 17:10:58 -07001176 if (lis3->reg_cache == NULL) {
Samu Onkalof9deb412010-10-22 07:57:24 -04001177 printk(KERN_ERR DRIVER_NAME "out of memory\n");
1178 return -ENOMEM;
1179 }
1180
Éric Pield7f81d42011-10-31 17:10:58 -07001181 mutex_init(&lis3->mutex);
1182 atomic_set(&lis3->wake_thread, 0);
Samu Onkalo2db4a762009-12-14 18:01:43 -08001183
Éric Pield7f81d42011-10-31 17:10:58 -07001184 lis3lv02d_add_fs(lis3);
1185 err = lis3lv02d_poweron(lis3);
Éric Piel1510dd52011-10-31 17:10:31 -07001186 if (err) {
Éric Pield7f81d42011-10-31 17:10:58 -07001187 lis3lv02d_remove_fs(lis3);
Éric Piel1510dd52011-10-31 17:10:31 -07001188 return err;
1189 }
Daniel Mackab337a62009-03-31 15:24:31 -07001190
Éric Pield7f81d42011-10-31 17:10:58 -07001191 if (lis3->pm_dev) {
1192 pm_runtime_set_active(lis3->pm_dev);
1193 pm_runtime_enable(lis3->pm_dev);
Samu Onkalo2a346992010-10-22 07:57:23 -04001194 }
1195
Éric Piele1e56872011-10-31 17:11:02 -07001196 if (lis3lv02d_joystick_enable(lis3))
Joe Perches63366d32010-10-20 06:51:40 +00001197 pr_err("joystick initialization failed\n");
Daniel Mackab337a62009-03-31 15:24:31 -07001198
Daniel Mack8f3128e2009-06-16 15:34:17 -07001199 /* passing in platform specific data is purely optional and only
1200 * used by the SPI transport layer at the moment */
Éric Pield7f81d42011-10-31 17:10:58 -07001201 if (lis3->pdata) {
1202 struct lis3lv02d_platform_data *p = lis3->pdata;
Daniel Mack8f3128e2009-06-16 15:34:17 -07001203
Éric Pield7f81d42011-10-31 17:10:58 -07001204 if (lis3->whoami == WAI_8B)
1205 lis3lv02d_8b_configure(lis3, p);
Daniel Mack8873c332009-09-21 17:04:43 -07001206
Samu Onkalocc23aa12010-10-22 07:57:29 -04001207 irq_flags = p->irq_flags1 & IRQF_TRIGGER_MASK;
1208
Éric Pield7f81d42011-10-31 17:10:58 -07001209 lis3->irq_cfg = p->irq_cfg;
Daniel Mack8f3128e2009-06-16 15:34:17 -07001210 if (p->irq_cfg)
Éric Pield7f81d42011-10-31 17:10:58 -07001211 lis3->write(lis3, CTRL_REG3, p->irq_cfg);
Samu Onkalocc23aa12010-10-22 07:57:29 -04001212
1213 if (p->default_rate)
Éric Piel895c1562011-10-31 17:11:05 -07001214 lis3lv02d_set_odr(lis3, p->default_rate);
Daniel Mack8f3128e2009-06-16 15:34:17 -07001215 }
1216
Daniel Macka38da2e2009-03-31 15:24:32 -07001217 /* bail if we did not get an IRQ from the bus layer */
Éric Pield7f81d42011-10-31 17:10:58 -07001218 if (!lis3->irq) {
Kalhan Trisala20f0bc2011-01-25 14:24:37 +00001219 pr_debug("No IRQ. Disabling /dev/freefall\n");
Daniel Mackab337a62009-03-31 15:24:31 -07001220 goto out;
1221 }
1222
Samu Onkalo92ba4fe2010-05-24 14:33:36 -07001223 /*
1224 * The sensor can generate interrupts for free-fall and direction
1225 * detection (distinguishable with FF_WU_SRC and DD_SRC) but to keep
1226 * the things simple and _fast_ we activate it only for free-fall, so
1227 * no need to read register (very slow with ACPI). For the same reason,
1228 * we forbid shared interrupts.
1229 *
1230 * IRQF_TRIGGER_RISING seems pointless on HP laptops because the
1231 * io-apic is not configurable (and generates a warning) but I keep it
1232 * in case of support for other hardware.
1233 */
Éric Pield7f81d42011-10-31 17:10:58 -07001234 if (lis3->pdata && lis3->whoami == WAI_8B)
Samu Onkalo92ba4fe2010-05-24 14:33:36 -07001235 thread_fn = lis302dl_interrupt_thread1_8b;
1236 else
1237 thread_fn = NULL;
1238
Éric Pield7f81d42011-10-31 17:10:58 -07001239 err = request_threaded_irq(lis3->irq, lis302dl_interrupt,
Samu Onkalo92ba4fe2010-05-24 14:33:36 -07001240 thread_fn,
Samu Onkalocc23aa12010-10-22 07:57:29 -04001241 IRQF_TRIGGER_RISING | IRQF_ONESHOT |
1242 irq_flags,
Éric Piel895c1562011-10-31 17:11:05 -07001243 DRIVER_NAME, lis3);
Samu Onkalo92ba4fe2010-05-24 14:33:36 -07001244
1245 if (err < 0) {
Joe Perches63366d32010-10-20 06:51:40 +00001246 pr_err("Cannot get IRQ\n");
Samu Onkalo92ba4fe2010-05-24 14:33:36 -07001247 goto out;
1248 }
1249
Éric Piel895c1562011-10-31 17:11:05 -07001250 lis3->miscdev.minor = MISC_DYNAMIC_MINOR;
1251 lis3->miscdev.name = "freefall";
1252 lis3->miscdev.fops = &lis3lv02d_misc_fops;
1253
1254 if (misc_register(&lis3->miscdev))
Joe Perches63366d32010-10-20 06:51:40 +00001255 pr_err("misc_register failed\n");
Daniel Mackab337a62009-03-31 15:24:31 -07001256out:
Daniel Mackab337a62009-03-31 15:24:31 -07001257 return 0;
1258}
1259EXPORT_SYMBOL_GPL(lis3lv02d_init_device);
1260
Pavel Machek455fbdd2008-11-12 13:27:02 -08001261MODULE_DESCRIPTION("ST LIS3LV02Dx three-axis digital accelerometer driver");
Pavel Machekef2cfc72009-02-18 14:48:23 -08001262MODULE_AUTHOR("Yan Burman, Eric Piel, Pavel Machek");
Pavel Machek455fbdd2008-11-12 13:27:02 -08001263MODULE_LICENSE("GPL");