Thomas Gleixner | 1a59d1b8 | 2019-05-27 08:55:05 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 2 | /* |
| 3 | * lis3lv02d.c - ST LIS3LV02DL accelerometer driver |
| 4 | * |
| 5 | * Copyright (C) 2007-2008 Yan Burman |
| 6 | * Copyright (C) 2008 Eric Piel |
Pavel Machek | ef2cfc7 | 2009-02-18 14:48:23 -0800 | [diff] [blame] | 7 | * Copyright (C) 2008-2009 Pavel Machek |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 8 | */ |
| 9 | |
Joe Perches | 63366d3 | 2010-10-20 06:51:40 +0000 | [diff] [blame] | 10 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 11 | |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 12 | #include <linux/kernel.h> |
Ingo Molnar | 174cd4b | 2017-02-02 19:15:33 +0100 | [diff] [blame] | 13 | #include <linux/sched/signal.h> |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 14 | #include <linux/dmi.h> |
| 15 | #include <linux/module.h> |
| 16 | #include <linux/types.h> |
| 17 | #include <linux/platform_device.h> |
| 18 | #include <linux/interrupt.h> |
Dmitry Torokhov | bb4d6e0 | 2019-10-02 14:56:58 -0700 | [diff] [blame] | 19 | #include <linux/input.h> |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 20 | #include <linux/delay.h> |
| 21 | #include <linux/wait.h> |
| 22 | #include <linux/poll.h> |
Samu Onkalo | f9deb41 | 2010-10-22 07:57:24 -0400 | [diff] [blame] | 23 | #include <linux/slab.h> |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 24 | #include <linux/freezer.h> |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 25 | #include <linux/uaccess.h> |
Pavel Machek | ef2cfc7 | 2009-02-18 14:48:23 -0800 | [diff] [blame] | 26 | #include <linux/miscdevice.h> |
Samu Onkalo | 2a34699 | 2010-10-22 07:57:23 -0400 | [diff] [blame] | 27 | #include <linux/pm_runtime.h> |
Jean Delvare | ff60667 | 2011-03-21 17:59:36 +0100 | [diff] [blame] | 28 | #include <linux/atomic.h> |
Daniel Mack | cbac1a8 | 2012-09-26 13:58:16 -0700 | [diff] [blame] | 29 | #include <linux/of_device.h> |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 30 | #include "lis3lv02d.h" |
| 31 | |
| 32 | #define DRIVER_NAME "lis3lv02d" |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 33 | |
| 34 | /* joystick device poll interval in milliseconds */ |
| 35 | #define MDPS_POLL_INTERVAL 50 |
Samu Onkalo | 4a70a41 | 2010-05-24 14:33:37 -0700 | [diff] [blame] | 36 | #define MDPS_POLL_MIN 0 |
| 37 | #define MDPS_POLL_MAX 2000 |
Samu Onkalo | 2a34699 | 2010-10-22 07:57:23 -0400 | [diff] [blame] | 38 | |
| 39 | #define LIS3_SYSFS_POWERDOWN_DELAY 5000 /* In milliseconds */ |
| 40 | |
Samu Onkalo | 029756d | 2010-10-22 07:57:32 -0400 | [diff] [blame] | 41 | #define SELFTEST_OK 0 |
| 42 | #define SELFTEST_FAIL -1 |
| 43 | #define SELFTEST_IRQ -2 |
| 44 | |
| 45 | #define IRQ_LINE0 0 |
| 46 | #define IRQ_LINE1 1 |
| 47 | |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 48 | /* |
| 49 | * The sensor can also generate interrupts (DRDY) but it's pretty pointless |
Éric Piel | bc62c14 | 2009-12-14 18:01:39 -0800 | [diff] [blame] | 50 | * because they are generated even if the data do not change. So it's better |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 51 | * to keep the interrupt for the free-fall event. The values are updated at |
| 52 | * 40Hz (at the lowest frequency), but as it can be pretty time consuming on |
| 53 | * some low processor, we poll the sensor only at 20Hz... enough for the |
| 54 | * joystick. |
| 55 | */ |
| 56 | |
Samu Onkalo | 641615a | 2009-12-14 18:01:41 -0800 | [diff] [blame] | 57 | #define LIS3_PWRON_DELAY_WAI_12B (5000) |
| 58 | #define LIS3_PWRON_DELAY_WAI_8B (3000) |
| 59 | |
Samu Onkalo | 32496c7 | 2009-12-14 18:01:46 -0800 | [diff] [blame] | 60 | /* |
| 61 | * LIS3LV02D spec says 1024 LSBs corresponds 1 G -> 1LSB is 1000/1024 mG |
| 62 | * LIS302D spec says: 18 mG / digit |
| 63 | * LIS3_ACCURACY is used to increase accuracy of the intermediate |
| 64 | * calculation results. |
| 65 | */ |
| 66 | #define LIS3_ACCURACY 1024 |
| 67 | /* Sensitivity values for -2G +2G scale */ |
| 68 | #define LIS3_SENSITIVITY_12B ((LIS3_ACCURACY * 1000) / 1024) |
| 69 | #define LIS3_SENSITIVITY_8B (18 * LIS3_ACCURACY) |
| 70 | |
AnilKumar Ch | 0bf5a8b | 2012-08-22 12:00:39 +0530 | [diff] [blame] | 71 | /* |
AnilKumar Ch | e2b2ed8 | 2012-09-24 14:53:49 +0530 | [diff] [blame] | 72 | * LIS331DLH spec says 1LSBs corresponds 4G/4096 -> 1LSB is 1000/1024 mG. |
| 73 | * Below macros defines sensitivity values for +/-2G. Dataout bits for |
| 74 | * +/-2G range is 12 bits so 4 bits adjustment must be done to get 12bit |
| 75 | * data from 16bit value. Currently this driver supports only 2G range. |
AnilKumar Ch | 0bf5a8b | 2012-08-22 12:00:39 +0530 | [diff] [blame] | 76 | */ |
| 77 | #define LIS3DLH_SENSITIVITY_2G ((LIS3_ACCURACY * 1000) / 1024) |
| 78 | #define SHIFT_ADJ_2G 4 |
| 79 | |
Samu Onkalo | 477bc91 | 2010-10-22 07:57:30 -0400 | [diff] [blame] | 80 | #define LIS3_DEFAULT_FUZZ_12B 3 |
| 81 | #define LIS3_DEFAULT_FLAT_12B 3 |
| 82 | #define LIS3_DEFAULT_FUZZ_8B 1 |
| 83 | #define LIS3_DEFAULT_FLAT_8B 1 |
Samu Onkalo | 32496c7 | 2009-12-14 18:01:46 -0800 | [diff] [blame] | 84 | |
Daniel Mack | a38da2e | 2009-03-31 15:24:32 -0700 | [diff] [blame] | 85 | struct lis3lv02d lis3_dev = { |
Pavel Machek | be84cfc | 2009-03-31 15:24:26 -0700 | [diff] [blame] | 86 | .misc_wait = __WAIT_QUEUE_HEAD_INITIALIZER(lis3_dev.misc_wait), |
Pavel Machek | ef2cfc7 | 2009-02-18 14:48:23 -0800 | [diff] [blame] | 87 | }; |
Pavel Machek | be84cfc | 2009-03-31 15:24:26 -0700 | [diff] [blame] | 88 | EXPORT_SYMBOL_GPL(lis3_dev); |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 89 | |
Takashi Iwai | 2ee3214 | 2010-10-01 17:14:25 -0400 | [diff] [blame] | 90 | /* just like param_set_int() but does sanity-check so that it won't point |
| 91 | * over the axis array size |
| 92 | */ |
| 93 | static int param_set_axis(const char *val, const struct kernel_param *kp) |
| 94 | { |
| 95 | int ret = param_set_int(val, kp); |
| 96 | if (!ret) { |
| 97 | int val = *(int *)kp->arg; |
| 98 | if (val < 0) |
| 99 | val = -val; |
| 100 | if (!val || val > 3) |
| 101 | return -EINVAL; |
| 102 | } |
| 103 | return ret; |
| 104 | } |
| 105 | |
Luis R. Rodriguez | 9c27847 | 2015-05-27 11:09:38 +0930 | [diff] [blame] | 106 | static const struct kernel_param_ops param_ops_axis = { |
Takashi Iwai | 2ee3214 | 2010-10-01 17:14:25 -0400 | [diff] [blame] | 107 | .set = param_set_axis, |
| 108 | .get = param_get_int, |
| 109 | }; |
| 110 | |
Rusty Russell | bafeafe | 2012-01-13 09:32:16 +1030 | [diff] [blame] | 111 | #define param_check_axis(name, p) param_check_int(name, p) |
| 112 | |
Takashi Iwai | 2ee3214 | 2010-10-01 17:14:25 -0400 | [diff] [blame] | 113 | module_param_array_named(axes, lis3_dev.ac.as_array, axis, NULL, 0644); |
| 114 | MODULE_PARM_DESC(axes, "Axis-mapping for x,y,z directions"); |
| 115 | |
Daniel Mack | a38da2e | 2009-03-31 15:24:32 -0700 | [diff] [blame] | 116 | static s16 lis3lv02d_read_8(struct lis3lv02d *lis3, int reg) |
| 117 | { |
| 118 | s8 lo; |
| 119 | if (lis3->read(lis3, reg, &lo) < 0) |
| 120 | return 0; |
| 121 | |
| 122 | return lo; |
| 123 | } |
| 124 | |
Éric Piel | bc62c14 | 2009-12-14 18:01:39 -0800 | [diff] [blame] | 125 | static s16 lis3lv02d_read_12(struct lis3lv02d *lis3, int reg) |
Pavel Machek | be84cfc | 2009-03-31 15:24:26 -0700 | [diff] [blame] | 126 | { |
| 127 | u8 lo, hi; |
| 128 | |
Daniel Mack | a38da2e | 2009-03-31 15:24:32 -0700 | [diff] [blame] | 129 | lis3->read(lis3, reg - 1, &lo); |
| 130 | lis3->read(lis3, reg, &hi); |
Pavel Machek | be84cfc | 2009-03-31 15:24:26 -0700 | [diff] [blame] | 131 | /* In "12 bit right justified" mode, bit 6, bit 7, bit 8 = bit 5 */ |
| 132 | return (s16)((hi << 8) | lo); |
| 133 | } |
| 134 | |
AnilKumar Ch | 0bf5a8b | 2012-08-22 12:00:39 +0530 | [diff] [blame] | 135 | /* 12bits for 2G range, 13 bits for 4G range and 14 bits for 8G range */ |
AnilKumar Ch | e2b2ed8 | 2012-09-24 14:53:49 +0530 | [diff] [blame] | 136 | static s16 lis331dlh_read_data(struct lis3lv02d *lis3, int reg) |
AnilKumar Ch | 0bf5a8b | 2012-08-22 12:00:39 +0530 | [diff] [blame] | 137 | { |
| 138 | u8 lo, hi; |
| 139 | int v; |
| 140 | |
| 141 | lis3->read(lis3, reg - 1, &lo); |
| 142 | lis3->read(lis3, reg, &hi); |
| 143 | v = (int) ((hi << 8) | lo); |
| 144 | |
| 145 | return (s16) v >> lis3->shift_adj; |
| 146 | } |
| 147 | |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 148 | /** |
| 149 | * lis3lv02d_get_axis - For the given axis, give the value converted |
| 150 | * @axis: 1,2,3 - can also be negative |
| 151 | * @hw_values: raw values returned by the hardware |
| 152 | * |
| 153 | * Returns the converted value. |
| 154 | */ |
| 155 | static inline int lis3lv02d_get_axis(s8 axis, int hw_values[3]) |
| 156 | { |
| 157 | if (axis > 0) |
| 158 | return hw_values[axis - 1]; |
| 159 | else |
| 160 | return -hw_values[-axis - 1]; |
| 161 | } |
| 162 | |
| 163 | /** |
| 164 | * lis3lv02d_get_xyz - Get X, Y and Z axis values from the accelerometer |
Daniel Mack | a38da2e | 2009-03-31 15:24:32 -0700 | [diff] [blame] | 165 | * @lis3: pointer to the device struct |
| 166 | * @x: where to store the X axis value |
| 167 | * @y: where to store the Y axis value |
| 168 | * @z: where to store the Z axis value |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 169 | * |
| 170 | * Note that 40Hz input device can eat up about 10% CPU at 800MHZ |
| 171 | */ |
Daniel Mack | a38da2e | 2009-03-31 15:24:32 -0700 | [diff] [blame] | 172 | static void lis3lv02d_get_xyz(struct lis3lv02d *lis3, int *x, int *y, int *z) |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 173 | { |
| 174 | int position[3]; |
Samu Onkalo | 32496c7 | 2009-12-14 18:01:46 -0800 | [diff] [blame] | 175 | int i; |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 176 | |
Samu Onkalo | f10a540 | 2010-10-22 07:57:31 -0400 | [diff] [blame] | 177 | if (lis3->blkread) { |
Éric Piel | 895c156 | 2011-10-31 17:11:05 -0700 | [diff] [blame] | 178 | if (lis3->whoami == WAI_12B) { |
Samu Onkalo | f10a540 | 2010-10-22 07:57:31 -0400 | [diff] [blame] | 179 | u16 data[3]; |
| 180 | lis3->blkread(lis3, OUTX_L, 6, (u8 *)data); |
| 181 | for (i = 0; i < 3; i++) |
| 182 | position[i] = (s16)le16_to_cpu(data[i]); |
| 183 | } else { |
| 184 | u8 data[5]; |
| 185 | /* Data: x, dummy, y, dummy, z */ |
| 186 | lis3->blkread(lis3, OUTX, 5, data); |
| 187 | for (i = 0; i < 3; i++) |
| 188 | position[i] = (s8)data[i * 2]; |
| 189 | } |
| 190 | } else { |
| 191 | position[0] = lis3->read_data(lis3, OUTX); |
| 192 | position[1] = lis3->read_data(lis3, OUTY); |
| 193 | position[2] = lis3->read_data(lis3, OUTZ); |
| 194 | } |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 195 | |
Samu Onkalo | 32496c7 | 2009-12-14 18:01:46 -0800 | [diff] [blame] | 196 | for (i = 0; i < 3; i++) |
| 197 | position[i] = (position[i] * lis3->scale) / LIS3_ACCURACY; |
| 198 | |
Eric Piel | a002ee8 | 2009-06-16 15:34:14 -0700 | [diff] [blame] | 199 | *x = lis3lv02d_get_axis(lis3->ac.x, position); |
| 200 | *y = lis3lv02d_get_axis(lis3->ac.y, position); |
| 201 | *z = lis3lv02d_get_axis(lis3->ac.z, position); |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 202 | } |
| 203 | |
Samu Onkalo | 641615a | 2009-12-14 18:01:41 -0800 | [diff] [blame] | 204 | /* conversion btw sampling rate and the register values */ |
| 205 | static int lis3_12_rates[4] = {40, 160, 640, 2560}; |
| 206 | static int lis3_8_rates[2] = {100, 400}; |
Takashi Iwai | 78537c3 | 2010-09-23 10:01:39 -0700 | [diff] [blame] | 207 | static int lis3_3dc_rates[16] = {0, 1, 10, 25, 50, 100, 200, 400, 1600, 5000}; |
AnilKumar Ch | 0bf5a8b | 2012-08-22 12:00:39 +0530 | [diff] [blame] | 208 | static int lis3_3dlh_rates[4] = {50, 100, 400, 1000}; |
Samu Onkalo | 641615a | 2009-12-14 18:01:41 -0800 | [diff] [blame] | 209 | |
Samu Onkalo | a253aae | 2009-12-14 18:01:44 -0800 | [diff] [blame] | 210 | /* ODR is Output Data Rate */ |
Hans de Goede | 3641762 | 2021-02-17 11:24:59 +0100 | [diff] [blame] | 211 | static int lis3lv02d_get_odr_index(struct lis3lv02d *lis3) |
Samu Onkalo | 641615a | 2009-12-14 18:01:41 -0800 | [diff] [blame] | 212 | { |
| 213 | u8 ctrl; |
Samu Onkalo | a253aae | 2009-12-14 18:01:44 -0800 | [diff] [blame] | 214 | int shift; |
Samu Onkalo | 641615a | 2009-12-14 18:01:41 -0800 | [diff] [blame] | 215 | |
Éric Piel | 895c156 | 2011-10-31 17:11:05 -0700 | [diff] [blame] | 216 | lis3->read(lis3, CTRL_REG1, &ctrl); |
| 217 | ctrl &= lis3->odr_mask; |
| 218 | shift = ffs(lis3->odr_mask) - 1; |
Hans de Goede | 3641762 | 2021-02-17 11:24:59 +0100 | [diff] [blame] | 219 | return (ctrl >> shift); |
Samu Onkalo | a253aae | 2009-12-14 18:01:44 -0800 | [diff] [blame] | 220 | } |
Samu Onkalo | 641615a | 2009-12-14 18:01:41 -0800 | [diff] [blame] | 221 | |
Éric Piel | 1510dd5 | 2011-10-31 17:10:31 -0700 | [diff] [blame] | 222 | static int lis3lv02d_get_pwron_wait(struct lis3lv02d *lis3) |
| 223 | { |
Hans de Goede | 3641762 | 2021-02-17 11:24:59 +0100 | [diff] [blame] | 224 | int odr_idx = lis3lv02d_get_odr_index(lis3); |
| 225 | int div = lis3->odrs[odr_idx]; |
Éric Piel | 1510dd5 | 2011-10-31 17:10:31 -0700 | [diff] [blame] | 226 | |
Hans de Goede | 3641762 | 2021-02-17 11:24:59 +0100 | [diff] [blame] | 227 | if (div == 0) { |
| 228 | if (odr_idx == 0) { |
| 229 | /* Power-down mode, not sampling no need to sleep */ |
| 230 | return 0; |
| 231 | } |
| 232 | |
| 233 | dev_err(&lis3->pdev->dev, "Error unknown odrs-index: %d\n", odr_idx); |
Éric Piel | 1510dd5 | 2011-10-31 17:10:31 -0700 | [diff] [blame] | 234 | return -ENXIO; |
Hans de Goede | 3641762 | 2021-02-17 11:24:59 +0100 | [diff] [blame] | 235 | } |
Éric Piel | 1510dd5 | 2011-10-31 17:10:31 -0700 | [diff] [blame] | 236 | |
| 237 | /* LIS3 power on delay is quite long */ |
| 238 | msleep(lis3->pwron_delay / div); |
| 239 | return 0; |
| 240 | } |
| 241 | |
Éric Piel | 895c156 | 2011-10-31 17:11:05 -0700 | [diff] [blame] | 242 | static int lis3lv02d_set_odr(struct lis3lv02d *lis3, int rate) |
Samu Onkalo | a253aae | 2009-12-14 18:01:44 -0800 | [diff] [blame] | 243 | { |
| 244 | u8 ctrl; |
| 245 | int i, len, shift; |
| 246 | |
Takashi Iwai | 78537c3 | 2010-09-23 10:01:39 -0700 | [diff] [blame] | 247 | if (!rate) |
| 248 | return -EINVAL; |
| 249 | |
Éric Piel | 895c156 | 2011-10-31 17:11:05 -0700 | [diff] [blame] | 250 | lis3->read(lis3, CTRL_REG1, &ctrl); |
| 251 | ctrl &= ~lis3->odr_mask; |
| 252 | len = 1 << hweight_long(lis3->odr_mask); /* # of possible values */ |
| 253 | shift = ffs(lis3->odr_mask) - 1; |
Samu Onkalo | a253aae | 2009-12-14 18:01:44 -0800 | [diff] [blame] | 254 | |
| 255 | for (i = 0; i < len; i++) |
Éric Piel | 895c156 | 2011-10-31 17:11:05 -0700 | [diff] [blame] | 256 | if (lis3->odrs[i] == rate) { |
| 257 | lis3->write(lis3, CTRL_REG1, |
Samu Onkalo | a253aae | 2009-12-14 18:01:44 -0800 | [diff] [blame] | 258 | ctrl | (i << shift)); |
| 259 | return 0; |
| 260 | } |
| 261 | return -EINVAL; |
Samu Onkalo | 641615a | 2009-12-14 18:01:41 -0800 | [diff] [blame] | 262 | } |
| 263 | |
Samu Onkalo | 2db4a76 | 2009-12-14 18:01:43 -0800 | [diff] [blame] | 264 | static int lis3lv02d_selftest(struct lis3lv02d *lis3, s16 results[3]) |
| 265 | { |
Takashi Iwai | 78537c3 | 2010-09-23 10:01:39 -0700 | [diff] [blame] | 266 | u8 ctlreg, reg; |
Samu Onkalo | 2db4a76 | 2009-12-14 18:01:43 -0800 | [diff] [blame] | 267 | s16 x, y, z; |
| 268 | u8 selftest; |
| 269 | int ret; |
Samu Onkalo | 029756d | 2010-10-22 07:57:32 -0400 | [diff] [blame] | 270 | u8 ctrl_reg_data; |
| 271 | unsigned char irq_cfg; |
Samu Onkalo | 2db4a76 | 2009-12-14 18:01:43 -0800 | [diff] [blame] | 272 | |
| 273 | mutex_lock(&lis3->mutex); |
Samu Onkalo | 029756d | 2010-10-22 07:57:32 -0400 | [diff] [blame] | 274 | |
| 275 | irq_cfg = lis3->irq_cfg; |
Éric Piel | 895c156 | 2011-10-31 17:11:05 -0700 | [diff] [blame] | 276 | if (lis3->whoami == WAI_8B) { |
Samu Onkalo | 029756d | 2010-10-22 07:57:32 -0400 | [diff] [blame] | 277 | lis3->data_ready_count[IRQ_LINE0] = 0; |
| 278 | lis3->data_ready_count[IRQ_LINE1] = 0; |
| 279 | |
| 280 | /* Change interrupt cfg to data ready for selftest */ |
Éric Piel | 895c156 | 2011-10-31 17:11:05 -0700 | [diff] [blame] | 281 | atomic_inc(&lis3->wake_thread); |
Samu Onkalo | 029756d | 2010-10-22 07:57:32 -0400 | [diff] [blame] | 282 | lis3->irq_cfg = LIS3_IRQ1_DATA_READY | LIS3_IRQ2_DATA_READY; |
| 283 | lis3->read(lis3, CTRL_REG3, &ctrl_reg_data); |
| 284 | lis3->write(lis3, CTRL_REG3, (ctrl_reg_data & |
| 285 | ~(LIS3_IRQ1_MASK | LIS3_IRQ2_MASK)) | |
| 286 | (LIS3_IRQ1_DATA_READY | LIS3_IRQ2_DATA_READY)); |
| 287 | } |
| 288 | |
AnilKumar Ch | 0bf5a8b | 2012-08-22 12:00:39 +0530 | [diff] [blame] | 289 | if ((lis3->whoami == WAI_3DC) || (lis3->whoami == WAI_3DLH)) { |
Takashi Iwai | 78537c3 | 2010-09-23 10:01:39 -0700 | [diff] [blame] | 290 | ctlreg = CTRL_REG4; |
| 291 | selftest = CTRL4_ST0; |
| 292 | } else { |
| 293 | ctlreg = CTRL_REG1; |
Éric Piel | 895c156 | 2011-10-31 17:11:05 -0700 | [diff] [blame] | 294 | if (lis3->whoami == WAI_12B) |
Takashi Iwai | 78537c3 | 2010-09-23 10:01:39 -0700 | [diff] [blame] | 295 | selftest = CTRL1_ST; |
| 296 | else |
| 297 | selftest = CTRL1_STP; |
| 298 | } |
Samu Onkalo | 2db4a76 | 2009-12-14 18:01:43 -0800 | [diff] [blame] | 299 | |
Takashi Iwai | 78537c3 | 2010-09-23 10:01:39 -0700 | [diff] [blame] | 300 | lis3->read(lis3, ctlreg, ®); |
| 301 | lis3->write(lis3, ctlreg, (reg | selftest)); |
Éric Piel | 1510dd5 | 2011-10-31 17:10:31 -0700 | [diff] [blame] | 302 | ret = lis3lv02d_get_pwron_wait(lis3); |
| 303 | if (ret) |
| 304 | goto fail; |
Samu Onkalo | 2db4a76 | 2009-12-14 18:01:43 -0800 | [diff] [blame] | 305 | |
| 306 | /* Read directly to avoid axis remap */ |
| 307 | x = lis3->read_data(lis3, OUTX); |
| 308 | y = lis3->read_data(lis3, OUTY); |
| 309 | z = lis3->read_data(lis3, OUTZ); |
| 310 | |
| 311 | /* back to normal settings */ |
Takashi Iwai | 78537c3 | 2010-09-23 10:01:39 -0700 | [diff] [blame] | 312 | lis3->write(lis3, ctlreg, reg); |
Éric Piel | 1510dd5 | 2011-10-31 17:10:31 -0700 | [diff] [blame] | 313 | ret = lis3lv02d_get_pwron_wait(lis3); |
| 314 | if (ret) |
| 315 | goto fail; |
Samu Onkalo | 2db4a76 | 2009-12-14 18:01:43 -0800 | [diff] [blame] | 316 | |
| 317 | results[0] = x - lis3->read_data(lis3, OUTX); |
| 318 | results[1] = y - lis3->read_data(lis3, OUTY); |
| 319 | results[2] = z - lis3->read_data(lis3, OUTZ); |
| 320 | |
| 321 | ret = 0; |
Samu Onkalo | 029756d | 2010-10-22 07:57:32 -0400 | [diff] [blame] | 322 | |
Éric Piel | 895c156 | 2011-10-31 17:11:05 -0700 | [diff] [blame] | 323 | if (lis3->whoami == WAI_8B) { |
Samu Onkalo | 029756d | 2010-10-22 07:57:32 -0400 | [diff] [blame] | 324 | /* Restore original interrupt configuration */ |
Éric Piel | 895c156 | 2011-10-31 17:11:05 -0700 | [diff] [blame] | 325 | atomic_dec(&lis3->wake_thread); |
Samu Onkalo | 029756d | 2010-10-22 07:57:32 -0400 | [diff] [blame] | 326 | lis3->write(lis3, CTRL_REG3, ctrl_reg_data); |
| 327 | lis3->irq_cfg = irq_cfg; |
| 328 | |
| 329 | if ((irq_cfg & LIS3_IRQ1_MASK) && |
| 330 | lis3->data_ready_count[IRQ_LINE0] < 2) { |
| 331 | ret = SELFTEST_IRQ; |
| 332 | goto fail; |
| 333 | } |
| 334 | |
| 335 | if ((irq_cfg & LIS3_IRQ2_MASK) && |
| 336 | lis3->data_ready_count[IRQ_LINE1] < 2) { |
| 337 | ret = SELFTEST_IRQ; |
| 338 | goto fail; |
| 339 | } |
| 340 | } |
| 341 | |
Samu Onkalo | 2db4a76 | 2009-12-14 18:01:43 -0800 | [diff] [blame] | 342 | if (lis3->pdata) { |
| 343 | int i; |
| 344 | for (i = 0; i < 3; i++) { |
| 345 | /* Check against selftest acceptance limits */ |
| 346 | if ((results[i] < lis3->pdata->st_min_limits[i]) || |
| 347 | (results[i] > lis3->pdata->st_max_limits[i])) { |
Samu Onkalo | 029756d | 2010-10-22 07:57:32 -0400 | [diff] [blame] | 348 | ret = SELFTEST_FAIL; |
Samu Onkalo | 2db4a76 | 2009-12-14 18:01:43 -0800 | [diff] [blame] | 349 | goto fail; |
| 350 | } |
| 351 | } |
| 352 | } |
| 353 | |
| 354 | /* test passed */ |
| 355 | fail: |
| 356 | mutex_unlock(&lis3->mutex); |
| 357 | return ret; |
| 358 | } |
| 359 | |
Samu Onkalo | f9deb41 | 2010-10-22 07:57:24 -0400 | [diff] [blame] | 360 | /* |
| 361 | * Order of registers in the list affects to order of the restore process. |
| 362 | * Perhaps it is a good idea to set interrupt enable register as a last one |
| 363 | * after all other configurations |
| 364 | */ |
| 365 | static u8 lis3_wai8_regs[] = { FF_WU_CFG_1, FF_WU_THS_1, FF_WU_DURATION_1, |
| 366 | FF_WU_CFG_2, FF_WU_THS_2, FF_WU_DURATION_2, |
| 367 | CLICK_CFG, CLICK_SRC, CLICK_THSY_X, CLICK_THSZ, |
| 368 | CLICK_TIMELIMIT, CLICK_LATENCY, CLICK_WINDOW, |
| 369 | CTRL_REG1, CTRL_REG2, CTRL_REG3}; |
| 370 | |
| 371 | static u8 lis3_wai12_regs[] = {FF_WU_CFG, FF_WU_THS_L, FF_WU_THS_H, |
| 372 | FF_WU_DURATION, DD_CFG, DD_THSI_L, DD_THSI_H, |
| 373 | DD_THSE_L, DD_THSE_H, |
| 374 | CTRL_REG1, CTRL_REG3, CTRL_REG2}; |
| 375 | |
| 376 | static inline void lis3_context_save(struct lis3lv02d *lis3) |
| 377 | { |
| 378 | int i; |
| 379 | for (i = 0; i < lis3->regs_size; i++) |
| 380 | lis3->read(lis3, lis3->regs[i], &lis3->reg_cache[i]); |
| 381 | lis3->regs_stored = true; |
| 382 | } |
| 383 | |
| 384 | static inline void lis3_context_restore(struct lis3lv02d *lis3) |
| 385 | { |
| 386 | int i; |
| 387 | if (lis3->regs_stored) |
| 388 | for (i = 0; i < lis3->regs_size; i++) |
| 389 | lis3->write(lis3, lis3->regs[i], lis3->reg_cache[i]); |
| 390 | } |
| 391 | |
Daniel Mack | a38da2e | 2009-03-31 15:24:32 -0700 | [diff] [blame] | 392 | void lis3lv02d_poweroff(struct lis3lv02d *lis3) |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 393 | { |
Samu Onkalo | f9deb41 | 2010-10-22 07:57:24 -0400 | [diff] [blame] | 394 | if (lis3->reg_ctrl) |
| 395 | lis3_context_save(lis3); |
Eric Piel | a002ee8 | 2009-06-16 15:34:14 -0700 | [diff] [blame] | 396 | /* disable X,Y,Z axis and power down */ |
| 397 | lis3->write(lis3, CTRL_REG1, 0x00); |
Samu Onkalo | f9deb41 | 2010-10-22 07:57:24 -0400 | [diff] [blame] | 398 | if (lis3->reg_ctrl) |
| 399 | lis3->reg_ctrl(lis3, LIS3_REG_OFF); |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 400 | } |
Eric Piel | cfce41a | 2009-01-09 16:41:01 -0800 | [diff] [blame] | 401 | EXPORT_SYMBOL_GPL(lis3lv02d_poweroff); |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 402 | |
Éric Piel | 1510dd5 | 2011-10-31 17:10:31 -0700 | [diff] [blame] | 403 | int lis3lv02d_poweron(struct lis3lv02d *lis3) |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 404 | { |
Éric Piel | 1510dd5 | 2011-10-31 17:10:31 -0700 | [diff] [blame] | 405 | int err; |
Eric Piel | a002ee8 | 2009-06-16 15:34:14 -0700 | [diff] [blame] | 406 | u8 reg; |
| 407 | |
| 408 | lis3->init(lis3); |
| 409 | |
| 410 | /* |
| 411 | * Common configuration |
Éric Piel | 4b5d95b | 2009-12-14 18:01:40 -0800 | [diff] [blame] | 412 | * BDU: (12 bits sensors only) LSB and MSB values are not updated until |
| 413 | * both have been read. So the value read will always be correct. |
Samu Onkalo | 2a7fade | 2010-10-22 07:57:27 -0400 | [diff] [blame] | 414 | * Set BOOT bit to refresh factory tuning values. |
Eric Piel | a002ee8 | 2009-06-16 15:34:14 -0700 | [diff] [blame] | 415 | */ |
Takashi Iwai | 05faadc | 2011-10-03 18:09:14 -0700 | [diff] [blame] | 416 | if (lis3->pdata) { |
| 417 | lis3->read(lis3, CTRL_REG2, ®); |
| 418 | if (lis3->whoami == WAI_12B) |
| 419 | reg |= CTRL2_BDU | CTRL2_BOOT; |
AnilKumar Ch | 0bf5a8b | 2012-08-22 12:00:39 +0530 | [diff] [blame] | 420 | else if (lis3->whoami == WAI_3DLH) |
| 421 | reg |= CTRL2_BOOT_3DLH; |
Takashi Iwai | 05faadc | 2011-10-03 18:09:14 -0700 | [diff] [blame] | 422 | else |
| 423 | reg |= CTRL2_BOOT_8B; |
| 424 | lis3->write(lis3, CTRL_REG2, reg); |
AnilKumar Ch | 0bf5a8b | 2012-08-22 12:00:39 +0530 | [diff] [blame] | 425 | |
| 426 | if (lis3->whoami == WAI_3DLH) { |
| 427 | lis3->read(lis3, CTRL_REG4, ®); |
| 428 | reg |= CTRL4_BDU; |
| 429 | lis3->write(lis3, CTRL_REG4, reg); |
| 430 | } |
Takashi Iwai | 05faadc | 2011-10-03 18:09:14 -0700 | [diff] [blame] | 431 | } |
Samu Onkalo | 2a7fade | 2010-10-22 07:57:27 -0400 | [diff] [blame] | 432 | |
Éric Piel | 1510dd5 | 2011-10-31 17:10:31 -0700 | [diff] [blame] | 433 | err = lis3lv02d_get_pwron_wait(lis3); |
| 434 | if (err) |
| 435 | return err; |
Samu Onkalo | 2a7fade | 2010-10-22 07:57:27 -0400 | [diff] [blame] | 436 | |
Samu Onkalo | f9deb41 | 2010-10-22 07:57:24 -0400 | [diff] [blame] | 437 | if (lis3->reg_ctrl) |
| 438 | lis3_context_restore(lis3); |
Éric Piel | 1510dd5 | 2011-10-31 17:10:31 -0700 | [diff] [blame] | 439 | |
| 440 | return 0; |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 441 | } |
Eric Piel | cfce41a | 2009-01-09 16:41:01 -0800 | [diff] [blame] | 442 | EXPORT_SYMBOL_GPL(lis3lv02d_poweron); |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 443 | |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 444 | |
Dmitry Torokhov | bb4d6e0 | 2019-10-02 14:56:58 -0700 | [diff] [blame] | 445 | static void lis3lv02d_joystick_poll(struct input_dev *input) |
Samu Onkalo | 6d94d40 | 2010-05-24 14:33:37 -0700 | [diff] [blame] | 446 | { |
Dmitry Torokhov | bb4d6e0 | 2019-10-02 14:56:58 -0700 | [diff] [blame] | 447 | struct lis3lv02d *lis3 = input_get_drvdata(input); |
Samu Onkalo | 6d94d40 | 2010-05-24 14:33:37 -0700 | [diff] [blame] | 448 | int x, y, z; |
| 449 | |
Éric Piel | 895c156 | 2011-10-31 17:11:05 -0700 | [diff] [blame] | 450 | mutex_lock(&lis3->mutex); |
| 451 | lis3lv02d_get_xyz(lis3, &x, &y, &z); |
Dmitry Torokhov | bb4d6e0 | 2019-10-02 14:56:58 -0700 | [diff] [blame] | 452 | input_report_abs(input, ABS_X, x); |
| 453 | input_report_abs(input, ABS_Y, y); |
| 454 | input_report_abs(input, ABS_Z, z); |
| 455 | input_sync(input); |
Éric Piel | 895c156 | 2011-10-31 17:11:05 -0700 | [diff] [blame] | 456 | mutex_unlock(&lis3->mutex); |
Samu Onkalo | 6d94d40 | 2010-05-24 14:33:37 -0700 | [diff] [blame] | 457 | } |
| 458 | |
Dmitry Torokhov | bb4d6e0 | 2019-10-02 14:56:58 -0700 | [diff] [blame] | 459 | static int lis3lv02d_joystick_open(struct input_dev *input) |
Samu Onkalo | 2a34699 | 2010-10-22 07:57:23 -0400 | [diff] [blame] | 460 | { |
Dmitry Torokhov | bb4d6e0 | 2019-10-02 14:56:58 -0700 | [diff] [blame] | 461 | struct lis3lv02d *lis3 = input_get_drvdata(input); |
Samu Onkalo | e726111 | 2010-10-22 07:57:25 -0400 | [diff] [blame] | 462 | |
Éric Piel | 895c156 | 2011-10-31 17:11:05 -0700 | [diff] [blame] | 463 | if (lis3->pm_dev) |
| 464 | pm_runtime_get_sync(lis3->pm_dev); |
| 465 | |
| 466 | if (lis3->pdata && lis3->whoami == WAI_8B && lis3->idev) |
| 467 | atomic_set(&lis3->wake_thread, 1); |
Samu Onkalo | 821f664 | 2010-10-22 07:57:26 -0400 | [diff] [blame] | 468 | /* |
| 469 | * Update coordinates for the case where poll interval is 0 and |
| 470 | * the chip in running purely under interrupt control |
| 471 | */ |
Dmitry Torokhov | bb4d6e0 | 2019-10-02 14:56:58 -0700 | [diff] [blame] | 472 | lis3lv02d_joystick_poll(input); |
| 473 | |
| 474 | return 0; |
Samu Onkalo | 2a34699 | 2010-10-22 07:57:23 -0400 | [diff] [blame] | 475 | } |
| 476 | |
Dmitry Torokhov | bb4d6e0 | 2019-10-02 14:56:58 -0700 | [diff] [blame] | 477 | static void lis3lv02d_joystick_close(struct input_dev *input) |
Samu Onkalo | 2a34699 | 2010-10-22 07:57:23 -0400 | [diff] [blame] | 478 | { |
Dmitry Torokhov | bb4d6e0 | 2019-10-02 14:56:58 -0700 | [diff] [blame] | 479 | struct lis3lv02d *lis3 = input_get_drvdata(input); |
Éric Piel | 895c156 | 2011-10-31 17:11:05 -0700 | [diff] [blame] | 480 | |
| 481 | atomic_set(&lis3->wake_thread, 0); |
| 482 | if (lis3->pm_dev) |
| 483 | pm_runtime_put(lis3->pm_dev); |
Samu Onkalo | 2a34699 | 2010-10-22 07:57:23 -0400 | [diff] [blame] | 484 | } |
| 485 | |
Éric Piel | 895c156 | 2011-10-31 17:11:05 -0700 | [diff] [blame] | 486 | static irqreturn_t lis302dl_interrupt(int irq, void *data) |
Pavel Machek | ef2cfc7 | 2009-02-18 14:48:23 -0800 | [diff] [blame] | 487 | { |
Éric Piel | 895c156 | 2011-10-31 17:11:05 -0700 | [diff] [blame] | 488 | struct lis3lv02d *lis3 = data; |
| 489 | |
| 490 | if (!test_bit(0, &lis3->misc_opened)) |
Samu Onkalo | 92ba4fe | 2010-05-24 14:33:36 -0700 | [diff] [blame] | 491 | goto out; |
| 492 | |
Pavel Machek | ef2cfc7 | 2009-02-18 14:48:23 -0800 | [diff] [blame] | 493 | /* |
| 494 | * Be careful: on some HP laptops the bios force DD when on battery and |
| 495 | * the lid is closed. This leads to interrupts as soon as a little move |
| 496 | * is done. |
| 497 | */ |
Éric Piel | 895c156 | 2011-10-31 17:11:05 -0700 | [diff] [blame] | 498 | atomic_inc(&lis3->count); |
Pavel Machek | ef2cfc7 | 2009-02-18 14:48:23 -0800 | [diff] [blame] | 499 | |
Éric Piel | 895c156 | 2011-10-31 17:11:05 -0700 | [diff] [blame] | 500 | wake_up_interruptible(&lis3->misc_wait); |
| 501 | kill_fasync(&lis3->async_queue, SIGIO, POLL_IN); |
Samu Onkalo | 92ba4fe | 2010-05-24 14:33:36 -0700 | [diff] [blame] | 502 | out: |
Éric Piel | 895c156 | 2011-10-31 17:11:05 -0700 | [diff] [blame] | 503 | if (atomic_read(&lis3->wake_thread)) |
Samu Onkalo | 92ba4fe | 2010-05-24 14:33:36 -0700 | [diff] [blame] | 504 | return IRQ_WAKE_THREAD; |
| 505 | return IRQ_HANDLED; |
| 506 | } |
| 507 | |
Samu Onkalo | 6d94d40 | 2010-05-24 14:33:37 -0700 | [diff] [blame] | 508 | static void lis302dl_interrupt_handle_click(struct lis3lv02d *lis3) |
| 509 | { |
Dmitry Torokhov | bb4d6e0 | 2019-10-02 14:56:58 -0700 | [diff] [blame] | 510 | struct input_dev *dev = lis3->idev; |
Samu Onkalo | 6d94d40 | 2010-05-24 14:33:37 -0700 | [diff] [blame] | 511 | u8 click_src; |
| 512 | |
| 513 | mutex_lock(&lis3->mutex); |
| 514 | lis3->read(lis3, CLICK_SRC, &click_src); |
| 515 | |
| 516 | if (click_src & CLICK_SINGLE_X) { |
| 517 | input_report_key(dev, lis3->mapped_btns[0], 1); |
| 518 | input_report_key(dev, lis3->mapped_btns[0], 0); |
| 519 | } |
| 520 | |
| 521 | if (click_src & CLICK_SINGLE_Y) { |
| 522 | input_report_key(dev, lis3->mapped_btns[1], 1); |
| 523 | input_report_key(dev, lis3->mapped_btns[1], 0); |
| 524 | } |
| 525 | |
| 526 | if (click_src & CLICK_SINGLE_Z) { |
| 527 | input_report_key(dev, lis3->mapped_btns[2], 1); |
| 528 | input_report_key(dev, lis3->mapped_btns[2], 0); |
| 529 | } |
| 530 | input_sync(dev); |
| 531 | mutex_unlock(&lis3->mutex); |
| 532 | } |
| 533 | |
Samu Onkalo | 029756d | 2010-10-22 07:57:32 -0400 | [diff] [blame] | 534 | static inline void lis302dl_data_ready(struct lis3lv02d *lis3, int index) |
| 535 | { |
| 536 | int dummy; |
| 537 | |
| 538 | /* Dummy read to ack interrupt */ |
| 539 | lis3lv02d_get_xyz(lis3, &dummy, &dummy, &dummy); |
| 540 | lis3->data_ready_count[index]++; |
| 541 | } |
| 542 | |
Samu Onkalo | 92ba4fe | 2010-05-24 14:33:36 -0700 | [diff] [blame] | 543 | static irqreturn_t lis302dl_interrupt_thread1_8b(int irq, void *data) |
| 544 | { |
Samu Onkalo | 6d94d40 | 2010-05-24 14:33:37 -0700 | [diff] [blame] | 545 | struct lis3lv02d *lis3 = data; |
Samu Onkalo | 029756d | 2010-10-22 07:57:32 -0400 | [diff] [blame] | 546 | u8 irq_cfg = lis3->irq_cfg & LIS3_IRQ1_MASK; |
Samu Onkalo | 6d94d40 | 2010-05-24 14:33:37 -0700 | [diff] [blame] | 547 | |
Samu Onkalo | 029756d | 2010-10-22 07:57:32 -0400 | [diff] [blame] | 548 | if (irq_cfg == LIS3_IRQ1_CLICK) |
Samu Onkalo | 6d94d40 | 2010-05-24 14:33:37 -0700 | [diff] [blame] | 549 | lis302dl_interrupt_handle_click(lis3); |
Samu Onkalo | 029756d | 2010-10-22 07:57:32 -0400 | [diff] [blame] | 550 | else if (unlikely(irq_cfg == LIS3_IRQ1_DATA_READY)) |
| 551 | lis302dl_data_ready(lis3, IRQ_LINE0); |
Samu Onkalo | 6d94d40 | 2010-05-24 14:33:37 -0700 | [diff] [blame] | 552 | else |
Samu Onkalo | e726111 | 2010-10-22 07:57:25 -0400 | [diff] [blame] | 553 | lis3lv02d_joystick_poll(lis3->idev); |
Samu Onkalo | 6d94d40 | 2010-05-24 14:33:37 -0700 | [diff] [blame] | 554 | |
Samu Onkalo | 92ba4fe | 2010-05-24 14:33:36 -0700 | [diff] [blame] | 555 | return IRQ_HANDLED; |
| 556 | } |
| 557 | |
| 558 | static irqreturn_t lis302dl_interrupt_thread2_8b(int irq, void *data) |
| 559 | { |
Samu Onkalo | 6d94d40 | 2010-05-24 14:33:37 -0700 | [diff] [blame] | 560 | struct lis3lv02d *lis3 = data; |
Samu Onkalo | 029756d | 2010-10-22 07:57:32 -0400 | [diff] [blame] | 561 | u8 irq_cfg = lis3->irq_cfg & LIS3_IRQ2_MASK; |
Samu Onkalo | 6d94d40 | 2010-05-24 14:33:37 -0700 | [diff] [blame] | 562 | |
Samu Onkalo | 029756d | 2010-10-22 07:57:32 -0400 | [diff] [blame] | 563 | if (irq_cfg == LIS3_IRQ2_CLICK) |
Samu Onkalo | 6d94d40 | 2010-05-24 14:33:37 -0700 | [diff] [blame] | 564 | lis302dl_interrupt_handle_click(lis3); |
Samu Onkalo | 029756d | 2010-10-22 07:57:32 -0400 | [diff] [blame] | 565 | else if (unlikely(irq_cfg == LIS3_IRQ2_DATA_READY)) |
| 566 | lis302dl_data_ready(lis3, IRQ_LINE1); |
Samu Onkalo | 6d94d40 | 2010-05-24 14:33:37 -0700 | [diff] [blame] | 567 | else |
Samu Onkalo | e726111 | 2010-10-22 07:57:25 -0400 | [diff] [blame] | 568 | lis3lv02d_joystick_poll(lis3->idev); |
Samu Onkalo | 6d94d40 | 2010-05-24 14:33:37 -0700 | [diff] [blame] | 569 | |
Pavel Machek | ef2cfc7 | 2009-02-18 14:48:23 -0800 | [diff] [blame] | 570 | return IRQ_HANDLED; |
| 571 | } |
| 572 | |
| 573 | static int lis3lv02d_misc_open(struct inode *inode, struct file *file) |
| 574 | { |
Éric Piel | 895c156 | 2011-10-31 17:11:05 -0700 | [diff] [blame] | 575 | struct lis3lv02d *lis3 = container_of(file->private_data, |
| 576 | struct lis3lv02d, miscdev); |
| 577 | |
| 578 | if (test_and_set_bit(0, &lis3->misc_opened)) |
Pavel Machek | ef2cfc7 | 2009-02-18 14:48:23 -0800 | [diff] [blame] | 579 | return -EBUSY; /* already open */ |
| 580 | |
Éric Piel | 895c156 | 2011-10-31 17:11:05 -0700 | [diff] [blame] | 581 | if (lis3->pm_dev) |
| 582 | pm_runtime_get_sync(lis3->pm_dev); |
Samu Onkalo | 2a34699 | 2010-10-22 07:57:23 -0400 | [diff] [blame] | 583 | |
Éric Piel | 895c156 | 2011-10-31 17:11:05 -0700 | [diff] [blame] | 584 | atomic_set(&lis3->count, 0); |
Pavel Machek | ef2cfc7 | 2009-02-18 14:48:23 -0800 | [diff] [blame] | 585 | return 0; |
| 586 | } |
| 587 | |
| 588 | static int lis3lv02d_misc_release(struct inode *inode, struct file *file) |
| 589 | { |
Éric Piel | 895c156 | 2011-10-31 17:11:05 -0700 | [diff] [blame] | 590 | struct lis3lv02d *lis3 = container_of(file->private_data, |
| 591 | struct lis3lv02d, miscdev); |
| 592 | |
Éric Piel | 895c156 | 2011-10-31 17:11:05 -0700 | [diff] [blame] | 593 | clear_bit(0, &lis3->misc_opened); /* release the device */ |
| 594 | if (lis3->pm_dev) |
| 595 | pm_runtime_put(lis3->pm_dev); |
Pavel Machek | ef2cfc7 | 2009-02-18 14:48:23 -0800 | [diff] [blame] | 596 | return 0; |
| 597 | } |
| 598 | |
| 599 | static ssize_t lis3lv02d_misc_read(struct file *file, char __user *buf, |
| 600 | size_t count, loff_t *pos) |
| 601 | { |
Éric Piel | 895c156 | 2011-10-31 17:11:05 -0700 | [diff] [blame] | 602 | struct lis3lv02d *lis3 = container_of(file->private_data, |
| 603 | struct lis3lv02d, miscdev); |
| 604 | |
Pavel Machek | ef2cfc7 | 2009-02-18 14:48:23 -0800 | [diff] [blame] | 605 | DECLARE_WAITQUEUE(wait, current); |
| 606 | u32 data; |
| 607 | unsigned char byte_data; |
| 608 | ssize_t retval = 1; |
| 609 | |
| 610 | if (count < 1) |
| 611 | return -EINVAL; |
| 612 | |
Éric Piel | 895c156 | 2011-10-31 17:11:05 -0700 | [diff] [blame] | 613 | add_wait_queue(&lis3->misc_wait, &wait); |
Pavel Machek | ef2cfc7 | 2009-02-18 14:48:23 -0800 | [diff] [blame] | 614 | while (true) { |
| 615 | set_current_state(TASK_INTERRUPTIBLE); |
Éric Piel | 895c156 | 2011-10-31 17:11:05 -0700 | [diff] [blame] | 616 | data = atomic_xchg(&lis3->count, 0); |
Pavel Machek | ef2cfc7 | 2009-02-18 14:48:23 -0800 | [diff] [blame] | 617 | if (data) |
| 618 | break; |
| 619 | |
| 620 | if (file->f_flags & O_NONBLOCK) { |
| 621 | retval = -EAGAIN; |
| 622 | goto out; |
| 623 | } |
| 624 | |
| 625 | if (signal_pending(current)) { |
| 626 | retval = -ERESTARTSYS; |
| 627 | goto out; |
| 628 | } |
| 629 | |
| 630 | schedule(); |
| 631 | } |
| 632 | |
| 633 | if (data < 255) |
| 634 | byte_data = data; |
| 635 | else |
| 636 | byte_data = 255; |
| 637 | |
| 638 | /* make sure we are not going into copy_to_user() with |
| 639 | * TASK_INTERRUPTIBLE state */ |
| 640 | set_current_state(TASK_RUNNING); |
| 641 | if (copy_to_user(buf, &byte_data, sizeof(byte_data))) |
| 642 | retval = -EFAULT; |
| 643 | |
| 644 | out: |
| 645 | __set_current_state(TASK_RUNNING); |
Éric Piel | 895c156 | 2011-10-31 17:11:05 -0700 | [diff] [blame] | 646 | remove_wait_queue(&lis3->misc_wait, &wait); |
Pavel Machek | ef2cfc7 | 2009-02-18 14:48:23 -0800 | [diff] [blame] | 647 | |
| 648 | return retval; |
| 649 | } |
| 650 | |
Al Viro | afc9a42 | 2017-07-03 06:39:46 -0400 | [diff] [blame] | 651 | static __poll_t lis3lv02d_misc_poll(struct file *file, poll_table *wait) |
Pavel Machek | ef2cfc7 | 2009-02-18 14:48:23 -0800 | [diff] [blame] | 652 | { |
Éric Piel | 895c156 | 2011-10-31 17:11:05 -0700 | [diff] [blame] | 653 | struct lis3lv02d *lis3 = container_of(file->private_data, |
| 654 | struct lis3lv02d, miscdev); |
| 655 | |
| 656 | poll_wait(file, &lis3->misc_wait, wait); |
| 657 | if (atomic_read(&lis3->count)) |
Linus Torvalds | a9a0884 | 2018-02-11 14:34:03 -0800 | [diff] [blame] | 658 | return EPOLLIN | EPOLLRDNORM; |
Pavel Machek | ef2cfc7 | 2009-02-18 14:48:23 -0800 | [diff] [blame] | 659 | return 0; |
| 660 | } |
| 661 | |
| 662 | static int lis3lv02d_misc_fasync(int fd, struct file *file, int on) |
| 663 | { |
Éric Piel | 895c156 | 2011-10-31 17:11:05 -0700 | [diff] [blame] | 664 | struct lis3lv02d *lis3 = container_of(file->private_data, |
| 665 | struct lis3lv02d, miscdev); |
| 666 | |
| 667 | return fasync_helper(fd, file, on, &lis3->async_queue); |
Pavel Machek | ef2cfc7 | 2009-02-18 14:48:23 -0800 | [diff] [blame] | 668 | } |
| 669 | |
| 670 | static const struct file_operations lis3lv02d_misc_fops = { |
| 671 | .owner = THIS_MODULE, |
| 672 | .llseek = no_llseek, |
| 673 | .read = lis3lv02d_misc_read, |
| 674 | .open = lis3lv02d_misc_open, |
| 675 | .release = lis3lv02d_misc_release, |
| 676 | .poll = lis3lv02d_misc_poll, |
| 677 | .fasync = lis3lv02d_misc_fasync, |
| 678 | }; |
| 679 | |
Éric Piel | e1e5687 | 2011-10-31 17:11:02 -0700 | [diff] [blame] | 680 | int lis3lv02d_joystick_enable(struct lis3lv02d *lis3) |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 681 | { |
Eric Piel | dc6ea97 | 2009-06-16 15:34:15 -0700 | [diff] [blame] | 682 | struct input_dev *input_dev; |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 683 | int err; |
Samu Onkalo | 32496c7 | 2009-12-14 18:01:46 -0800 | [diff] [blame] | 684 | int max_val, fuzz, flat; |
Samu Onkalo | 6d94d40 | 2010-05-24 14:33:37 -0700 | [diff] [blame] | 685 | int btns[] = {BTN_X, BTN_Y, BTN_Z}; |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 686 | |
Éric Piel | 895c156 | 2011-10-31 17:11:05 -0700 | [diff] [blame] | 687 | if (lis3->idev) |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 688 | return -EINVAL; |
| 689 | |
Dmitry Torokhov | bb4d6e0 | 2019-10-02 14:56:58 -0700 | [diff] [blame] | 690 | input_dev = input_allocate_device(); |
| 691 | if (!input_dev) |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 692 | return -ENOMEM; |
| 693 | |
Eric Piel | dc6ea97 | 2009-06-16 15:34:15 -0700 | [diff] [blame] | 694 | input_dev->name = "ST LIS3LV02DL Accelerometer"; |
| 695 | input_dev->phys = DRIVER_NAME "/input0"; |
| 696 | input_dev->id.bustype = BUS_HOST; |
| 697 | input_dev->id.vendor = 0; |
Éric Piel | 895c156 | 2011-10-31 17:11:05 -0700 | [diff] [blame] | 698 | input_dev->dev.parent = &lis3->pdev->dev; |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 699 | |
Dmitry Torokhov | bb4d6e0 | 2019-10-02 14:56:58 -0700 | [diff] [blame] | 700 | input_dev->open = lis3lv02d_joystick_open; |
| 701 | input_dev->close = lis3lv02d_joystick_close; |
| 702 | |
Éric Piel | 895c156 | 2011-10-31 17:11:05 -0700 | [diff] [blame] | 703 | max_val = (lis3->mdps_max_val * lis3->scale) / LIS3_ACCURACY; |
| 704 | if (lis3->whoami == WAI_12B) { |
Samu Onkalo | 477bc91 | 2010-10-22 07:57:30 -0400 | [diff] [blame] | 705 | fuzz = LIS3_DEFAULT_FUZZ_12B; |
| 706 | flat = LIS3_DEFAULT_FLAT_12B; |
| 707 | } else { |
| 708 | fuzz = LIS3_DEFAULT_FUZZ_8B; |
| 709 | flat = LIS3_DEFAULT_FLAT_8B; |
| 710 | } |
Éric Piel | 895c156 | 2011-10-31 17:11:05 -0700 | [diff] [blame] | 711 | fuzz = (fuzz * lis3->scale) / LIS3_ACCURACY; |
| 712 | flat = (flat * lis3->scale) / LIS3_ACCURACY; |
Samu Onkalo | 477bc91 | 2010-10-22 07:57:30 -0400 | [diff] [blame] | 713 | |
Samu Onkalo | 32496c7 | 2009-12-14 18:01:46 -0800 | [diff] [blame] | 714 | input_set_abs_params(input_dev, ABS_X, -max_val, max_val, fuzz, flat); |
| 715 | input_set_abs_params(input_dev, ABS_Y, -max_val, max_val, fuzz, flat); |
| 716 | input_set_abs_params(input_dev, ABS_Z, -max_val, max_val, fuzz, flat); |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 717 | |
Dmitry Torokhov | bb4d6e0 | 2019-10-02 14:56:58 -0700 | [diff] [blame] | 718 | input_set_drvdata(input_dev, lis3); |
| 719 | lis3->idev = input_dev; |
| 720 | |
| 721 | err = input_setup_polling(input_dev, lis3lv02d_joystick_poll); |
| 722 | if (err) |
| 723 | goto err_free_input; |
| 724 | |
| 725 | input_set_poll_interval(input_dev, MDPS_POLL_INTERVAL); |
| 726 | input_set_min_poll_interval(input_dev, MDPS_POLL_MIN); |
| 727 | input_set_max_poll_interval(input_dev, MDPS_POLL_MAX); |
| 728 | |
Éric Piel | 895c156 | 2011-10-31 17:11:05 -0700 | [diff] [blame] | 729 | lis3->mapped_btns[0] = lis3lv02d_get_axis(abs(lis3->ac.x), btns); |
| 730 | lis3->mapped_btns[1] = lis3lv02d_get_axis(abs(lis3->ac.y), btns); |
| 731 | lis3->mapped_btns[2] = lis3lv02d_get_axis(abs(lis3->ac.z), btns); |
Samu Onkalo | 6d94d40 | 2010-05-24 14:33:37 -0700 | [diff] [blame] | 732 | |
Dmitry Torokhov | bb4d6e0 | 2019-10-02 14:56:58 -0700 | [diff] [blame] | 733 | err = input_register_device(lis3->idev); |
| 734 | if (err) |
| 735 | goto err_free_input; |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 736 | |
Dmitry Torokhov | bb4d6e0 | 2019-10-02 14:56:58 -0700 | [diff] [blame] | 737 | return 0; |
| 738 | |
| 739 | err_free_input: |
| 740 | input_free_device(input_dev); |
| 741 | lis3->idev = NULL; |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 742 | return err; |
Dmitry Torokhov | bb4d6e0 | 2019-10-02 14:56:58 -0700 | [diff] [blame] | 743 | |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 744 | } |
Eric Piel | cfce41a | 2009-01-09 16:41:01 -0800 | [diff] [blame] | 745 | EXPORT_SYMBOL_GPL(lis3lv02d_joystick_enable); |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 746 | |
Éric Piel | e1e5687 | 2011-10-31 17:11:02 -0700 | [diff] [blame] | 747 | void lis3lv02d_joystick_disable(struct lis3lv02d *lis3) |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 748 | { |
Éric Piel | 895c156 | 2011-10-31 17:11:05 -0700 | [diff] [blame] | 749 | if (lis3->irq) |
| 750 | free_irq(lis3->irq, lis3); |
| 751 | if (lis3->pdata && lis3->pdata->irq2) |
| 752 | free_irq(lis3->pdata->irq2, lis3); |
Samu Onkalo | 92ba4fe | 2010-05-24 14:33:36 -0700 | [diff] [blame] | 753 | |
Éric Piel | 895c156 | 2011-10-31 17:11:05 -0700 | [diff] [blame] | 754 | if (!lis3->idev) |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 755 | return; |
| 756 | |
Éric Piel | 895c156 | 2011-10-31 17:11:05 -0700 | [diff] [blame] | 757 | if (lis3->irq) |
| 758 | misc_deregister(&lis3->miscdev); |
Dmitry Torokhov | bb4d6e0 | 2019-10-02 14:56:58 -0700 | [diff] [blame] | 759 | input_unregister_device(lis3->idev); |
Éric Piel | 895c156 | 2011-10-31 17:11:05 -0700 | [diff] [blame] | 760 | lis3->idev = NULL; |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 761 | } |
Eric Piel | cfce41a | 2009-01-09 16:41:01 -0800 | [diff] [blame] | 762 | EXPORT_SYMBOL_GPL(lis3lv02d_joystick_disable); |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 763 | |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 764 | /* Sysfs stuff */ |
Samu Onkalo | 2a34699 | 2010-10-22 07:57:23 -0400 | [diff] [blame] | 765 | static void lis3lv02d_sysfs_poweron(struct lis3lv02d *lis3) |
| 766 | { |
| 767 | /* |
| 768 | * SYSFS functions are fast visitors so put-call |
| 769 | * immediately after the get-call. However, keep |
| 770 | * chip running for a while and schedule delayed |
| 771 | * suspend. This way periodic sysfs calls doesn't |
| 772 | * suffer from relatively long power up time. |
| 773 | */ |
| 774 | |
| 775 | if (lis3->pm_dev) { |
| 776 | pm_runtime_get_sync(lis3->pm_dev); |
| 777 | pm_runtime_put_noidle(lis3->pm_dev); |
| 778 | pm_schedule_suspend(lis3->pm_dev, LIS3_SYSFS_POWERDOWN_DELAY); |
| 779 | } |
| 780 | } |
| 781 | |
Samu Onkalo | 2db4a76 | 2009-12-14 18:01:43 -0800 | [diff] [blame] | 782 | static ssize_t lis3lv02d_selftest_show(struct device *dev, |
| 783 | struct device_attribute *attr, char *buf) |
| 784 | { |
Éric Piel | 895c156 | 2011-10-31 17:11:05 -0700 | [diff] [blame] | 785 | struct lis3lv02d *lis3 = dev_get_drvdata(dev); |
Samu Onkalo | 2db4a76 | 2009-12-14 18:01:43 -0800 | [diff] [blame] | 786 | s16 values[3]; |
| 787 | |
Samu Onkalo | 029756d | 2010-10-22 07:57:32 -0400 | [diff] [blame] | 788 | static const char ok[] = "OK"; |
| 789 | static const char fail[] = "FAIL"; |
| 790 | static const char irq[] = "FAIL_IRQ"; |
| 791 | const char *res; |
| 792 | |
Éric Piel | 895c156 | 2011-10-31 17:11:05 -0700 | [diff] [blame] | 793 | lis3lv02d_sysfs_poweron(lis3); |
| 794 | switch (lis3lv02d_selftest(lis3, values)) { |
Samu Onkalo | 029756d | 2010-10-22 07:57:32 -0400 | [diff] [blame] | 795 | case SELFTEST_FAIL: |
| 796 | res = fail; |
| 797 | break; |
| 798 | case SELFTEST_IRQ: |
| 799 | res = irq; |
| 800 | break; |
| 801 | case SELFTEST_OK: |
| 802 | default: |
| 803 | res = ok; |
| 804 | break; |
| 805 | } |
| 806 | return sprintf(buf, "%s %d %d %d\n", res, |
Samu Onkalo | 2db4a76 | 2009-12-14 18:01:43 -0800 | [diff] [blame] | 807 | values[0], values[1], values[2]); |
| 808 | } |
| 809 | |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 810 | static ssize_t lis3lv02d_position_show(struct device *dev, |
| 811 | struct device_attribute *attr, char *buf) |
| 812 | { |
Éric Piel | 895c156 | 2011-10-31 17:11:05 -0700 | [diff] [blame] | 813 | struct lis3lv02d *lis3 = dev_get_drvdata(dev); |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 814 | int x, y, z; |
| 815 | |
Éric Piel | 895c156 | 2011-10-31 17:11:05 -0700 | [diff] [blame] | 816 | lis3lv02d_sysfs_poweron(lis3); |
| 817 | mutex_lock(&lis3->mutex); |
| 818 | lis3lv02d_get_xyz(lis3, &x, &y, &z); |
| 819 | mutex_unlock(&lis3->mutex); |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 820 | return sprintf(buf, "(%d,%d,%d)\n", x, y, z); |
| 821 | } |
| 822 | |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 823 | static ssize_t lis3lv02d_rate_show(struct device *dev, |
| 824 | struct device_attribute *attr, char *buf) |
| 825 | { |
Éric Piel | 895c156 | 2011-10-31 17:11:05 -0700 | [diff] [blame] | 826 | struct lis3lv02d *lis3 = dev_get_drvdata(dev); |
Hans de Goede | 3641762 | 2021-02-17 11:24:59 +0100 | [diff] [blame] | 827 | int odr_idx; |
Éric Piel | 895c156 | 2011-10-31 17:11:05 -0700 | [diff] [blame] | 828 | |
| 829 | lis3lv02d_sysfs_poweron(lis3); |
Hans de Goede | 3641762 | 2021-02-17 11:24:59 +0100 | [diff] [blame] | 830 | |
| 831 | odr_idx = lis3lv02d_get_odr_index(lis3); |
| 832 | return sprintf(buf, "%d\n", lis3->odrs[odr_idx]); |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 833 | } |
| 834 | |
Samu Onkalo | a253aae | 2009-12-14 18:01:44 -0800 | [diff] [blame] | 835 | static ssize_t lis3lv02d_rate_set(struct device *dev, |
| 836 | struct device_attribute *attr, const char *buf, |
| 837 | size_t count) |
| 838 | { |
Éric Piel | 895c156 | 2011-10-31 17:11:05 -0700 | [diff] [blame] | 839 | struct lis3lv02d *lis3 = dev_get_drvdata(dev); |
Samu Onkalo | a253aae | 2009-12-14 18:01:44 -0800 | [diff] [blame] | 840 | unsigned long rate; |
Jingoo Han | f7b4127 | 2013-06-04 13:15:16 +0900 | [diff] [blame] | 841 | int ret; |
Samu Onkalo | a253aae | 2009-12-14 18:01:44 -0800 | [diff] [blame] | 842 | |
Jingoo Han | f7b4127 | 2013-06-04 13:15:16 +0900 | [diff] [blame] | 843 | ret = kstrtoul(buf, 0, &rate); |
| 844 | if (ret) |
| 845 | return ret; |
Samu Onkalo | a253aae | 2009-12-14 18:01:44 -0800 | [diff] [blame] | 846 | |
Éric Piel | 895c156 | 2011-10-31 17:11:05 -0700 | [diff] [blame] | 847 | lis3lv02d_sysfs_poweron(lis3); |
| 848 | if (lis3lv02d_set_odr(lis3, rate)) |
Samu Onkalo | a253aae | 2009-12-14 18:01:44 -0800 | [diff] [blame] | 849 | return -EINVAL; |
| 850 | |
| 851 | return count; |
| 852 | } |
| 853 | |
Samu Onkalo | 2db4a76 | 2009-12-14 18:01:43 -0800 | [diff] [blame] | 854 | static DEVICE_ATTR(selftest, S_IRUSR, lis3lv02d_selftest_show, NULL); |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 855 | static DEVICE_ATTR(position, S_IRUGO, lis3lv02d_position_show, NULL); |
Samu Onkalo | a253aae | 2009-12-14 18:01:44 -0800 | [diff] [blame] | 856 | static DEVICE_ATTR(rate, S_IRUGO | S_IWUSR, lis3lv02d_rate_show, |
| 857 | lis3lv02d_rate_set); |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 858 | |
| 859 | static struct attribute *lis3lv02d_attributes[] = { |
Samu Onkalo | 2db4a76 | 2009-12-14 18:01:43 -0800 | [diff] [blame] | 860 | &dev_attr_selftest.attr, |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 861 | &dev_attr_position.attr, |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 862 | &dev_attr_rate.attr, |
| 863 | NULL |
| 864 | }; |
| 865 | |
Arvind Yadav | 27c0823 | 2017-08-04 12:07:56 +0530 | [diff] [blame] | 866 | static const struct attribute_group lis3lv02d_attribute_group = { |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 867 | .attrs = lis3lv02d_attributes |
| 868 | }; |
| 869 | |
Eric Piel | cfce41a | 2009-01-09 16:41:01 -0800 | [diff] [blame] | 870 | |
Daniel Mack | a38da2e | 2009-03-31 15:24:32 -0700 | [diff] [blame] | 871 | static int lis3lv02d_add_fs(struct lis3lv02d *lis3) |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 872 | { |
Eric Piel | a002ee8 | 2009-06-16 15:34:14 -0700 | [diff] [blame] | 873 | lis3->pdev = platform_device_register_simple(DRIVER_NAME, -1, NULL, 0); |
| 874 | if (IS_ERR(lis3->pdev)) |
| 875 | return PTR_ERR(lis3->pdev); |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 876 | |
Éric Piel | 895c156 | 2011-10-31 17:11:05 -0700 | [diff] [blame] | 877 | platform_set_drvdata(lis3->pdev, lis3); |
Eric Piel | a002ee8 | 2009-06-16 15:34:14 -0700 | [diff] [blame] | 878 | return sysfs_create_group(&lis3->pdev->dev.kobj, &lis3lv02d_attribute_group); |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 879 | } |
| 880 | |
Uwe Kleine-König | 4df4946 | 2021-10-12 17:39:37 +0200 | [diff] [blame] | 881 | void lis3lv02d_remove_fs(struct lis3lv02d *lis3) |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 882 | { |
Eric Piel | a002ee8 | 2009-06-16 15:34:14 -0700 | [diff] [blame] | 883 | sysfs_remove_group(&lis3->pdev->dev.kobj, &lis3lv02d_attribute_group); |
| 884 | platform_device_unregister(lis3->pdev); |
Samu Onkalo | 2a34699 | 2010-10-22 07:57:23 -0400 | [diff] [blame] | 885 | if (lis3->pm_dev) { |
| 886 | /* Barrier after the sysfs remove */ |
| 887 | pm_runtime_barrier(lis3->pm_dev); |
| 888 | |
| 889 | /* SYSFS may have left chip running. Turn off if necessary */ |
| 890 | if (!pm_runtime_suspended(lis3->pm_dev)) |
Éric Piel | 895c156 | 2011-10-31 17:11:05 -0700 | [diff] [blame] | 891 | lis3lv02d_poweroff(lis3); |
Samu Onkalo | 2a34699 | 2010-10-22 07:57:23 -0400 | [diff] [blame] | 892 | |
| 893 | pm_runtime_disable(lis3->pm_dev); |
| 894 | pm_runtime_set_suspended(lis3->pm_dev); |
| 895 | } |
Samu Onkalo | f9deb41 | 2010-10-22 07:57:24 -0400 | [diff] [blame] | 896 | kfree(lis3->reg_cache); |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 897 | } |
Eric Piel | cfce41a | 2009-01-09 16:41:01 -0800 | [diff] [blame] | 898 | EXPORT_SYMBOL_GPL(lis3lv02d_remove_fs); |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 899 | |
Éric Piel | d7f81d4 | 2011-10-31 17:10:58 -0700 | [diff] [blame] | 900 | static void lis3lv02d_8b_configure(struct lis3lv02d *lis3, |
Samu Onkalo | ecc437a | 2010-05-24 14:33:34 -0700 | [diff] [blame] | 901 | struct lis3lv02d_platform_data *p) |
| 902 | { |
Samu Onkalo | 92ba4fe | 2010-05-24 14:33:36 -0700 | [diff] [blame] | 903 | int err; |
Samu Onkalo | 342c5f1 | 2010-05-24 14:33:35 -0700 | [diff] [blame] | 904 | int ctrl2 = p->hipass_ctrl; |
| 905 | |
Samu Onkalo | ecc437a | 2010-05-24 14:33:34 -0700 | [diff] [blame] | 906 | if (p->click_flags) { |
Éric Piel | d7f81d4 | 2011-10-31 17:10:58 -0700 | [diff] [blame] | 907 | lis3->write(lis3, CLICK_CFG, p->click_flags); |
| 908 | lis3->write(lis3, CLICK_TIMELIMIT, p->click_time_limit); |
| 909 | lis3->write(lis3, CLICK_LATENCY, p->click_latency); |
| 910 | lis3->write(lis3, CLICK_WINDOW, p->click_window); |
| 911 | lis3->write(lis3, CLICK_THSZ, p->click_thresh_z & 0xf); |
| 912 | lis3->write(lis3, CLICK_THSY_X, |
Samu Onkalo | ecc437a | 2010-05-24 14:33:34 -0700 | [diff] [blame] | 913 | (p->click_thresh_x & 0xf) | |
| 914 | (p->click_thresh_y << 4)); |
Samu Onkalo | 6d94d40 | 2010-05-24 14:33:37 -0700 | [diff] [blame] | 915 | |
Éric Piel | d7f81d4 | 2011-10-31 17:10:58 -0700 | [diff] [blame] | 916 | if (lis3->idev) { |
Dmitry Torokhov | bb4d6e0 | 2019-10-02 14:56:58 -0700 | [diff] [blame] | 917 | input_set_capability(lis3->idev, EV_KEY, BTN_X); |
| 918 | input_set_capability(lis3->idev, EV_KEY, BTN_Y); |
| 919 | input_set_capability(lis3->idev, EV_KEY, BTN_Z); |
Samu Onkalo | 6d94d40 | 2010-05-24 14:33:37 -0700 | [diff] [blame] | 920 | } |
Samu Onkalo | ecc437a | 2010-05-24 14:33:34 -0700 | [diff] [blame] | 921 | } |
| 922 | |
| 923 | if (p->wakeup_flags) { |
Éric Piel | d7f81d4 | 2011-10-31 17:10:58 -0700 | [diff] [blame] | 924 | lis3->write(lis3, FF_WU_CFG_1, p->wakeup_flags); |
| 925 | lis3->write(lis3, FF_WU_THS_1, p->wakeup_thresh & 0x7f); |
Samu Onkalo | cc23aa1 | 2010-10-22 07:57:29 -0400 | [diff] [blame] | 926 | /* pdata value + 1 to keep this backward compatible*/ |
Éric Piel | d7f81d4 | 2011-10-31 17:10:58 -0700 | [diff] [blame] | 927 | lis3->write(lis3, FF_WU_DURATION_1, p->duration1 + 1); |
Samu Onkalo | 342c5f1 | 2010-05-24 14:33:35 -0700 | [diff] [blame] | 928 | ctrl2 ^= HP_FF_WU1; /* Xor to keep compatible with old pdata*/ |
Samu Onkalo | ecc437a | 2010-05-24 14:33:34 -0700 | [diff] [blame] | 929 | } |
Samu Onkalo | 342c5f1 | 2010-05-24 14:33:35 -0700 | [diff] [blame] | 930 | |
| 931 | if (p->wakeup_flags2) { |
Éric Piel | d7f81d4 | 2011-10-31 17:10:58 -0700 | [diff] [blame] | 932 | lis3->write(lis3, FF_WU_CFG_2, p->wakeup_flags2); |
| 933 | lis3->write(lis3, FF_WU_THS_2, p->wakeup_thresh2 & 0x7f); |
Samu Onkalo | cc23aa1 | 2010-10-22 07:57:29 -0400 | [diff] [blame] | 934 | /* pdata value + 1 to keep this backward compatible*/ |
Éric Piel | d7f81d4 | 2011-10-31 17:10:58 -0700 | [diff] [blame] | 935 | lis3->write(lis3, FF_WU_DURATION_2, p->duration2 + 1); |
Samu Onkalo | 342c5f1 | 2010-05-24 14:33:35 -0700 | [diff] [blame] | 936 | ctrl2 ^= HP_FF_WU2; /* Xor to keep compatible with old pdata*/ |
| 937 | } |
| 938 | /* Configure hipass filters */ |
Éric Piel | d7f81d4 | 2011-10-31 17:10:58 -0700 | [diff] [blame] | 939 | lis3->write(lis3, CTRL_REG2, ctrl2); |
Samu Onkalo | 92ba4fe | 2010-05-24 14:33:36 -0700 | [diff] [blame] | 940 | |
| 941 | if (p->irq2) { |
| 942 | err = request_threaded_irq(p->irq2, |
| 943 | NULL, |
| 944 | lis302dl_interrupt_thread2_8b, |
Samu Onkalo | cc23aa1 | 2010-10-22 07:57:29 -0400 | [diff] [blame] | 945 | IRQF_TRIGGER_RISING | IRQF_ONESHOT | |
| 946 | (p->irq_flags2 & IRQF_TRIGGER_MASK), |
Éric Piel | 895c156 | 2011-10-31 17:11:05 -0700 | [diff] [blame] | 947 | DRIVER_NAME, lis3); |
Samu Onkalo | 92ba4fe | 2010-05-24 14:33:36 -0700 | [diff] [blame] | 948 | if (err < 0) |
Joe Perches | 63366d3 | 2010-10-20 06:51:40 +0000 | [diff] [blame] | 949 | pr_err("No second IRQ. Limited functionality\n"); |
Samu Onkalo | 92ba4fe | 2010-05-24 14:33:36 -0700 | [diff] [blame] | 950 | } |
Samu Onkalo | ecc437a | 2010-05-24 14:33:34 -0700 | [diff] [blame] | 951 | } |
| 952 | |
Daniel Mack | cbac1a8 | 2012-09-26 13:58:16 -0700 | [diff] [blame] | 953 | #ifdef CONFIG_OF |
AnilKumar Ch | 0c83adb | 2012-09-26 13:58:21 -0700 | [diff] [blame] | 954 | int lis3lv02d_init_dt(struct lis3lv02d *lis3) |
Daniel Mack | cbac1a8 | 2012-09-26 13:58:16 -0700 | [diff] [blame] | 955 | { |
| 956 | struct lis3lv02d_platform_data *pdata; |
| 957 | struct device_node *np = lis3->of_node; |
| 958 | u32 val; |
Sebastian Reichel | cdcd6f8 | 2015-03-27 15:39:43 +0100 | [diff] [blame] | 959 | s32 sval; |
Daniel Mack | cbac1a8 | 2012-09-26 13:58:16 -0700 | [diff] [blame] | 960 | |
| 961 | if (!lis3->of_node) |
| 962 | return 0; |
| 963 | |
| 964 | pdata = kzalloc(sizeof(*pdata), GFP_KERNEL); |
| 965 | if (!pdata) |
| 966 | return -ENOMEM; |
| 967 | |
| 968 | if (of_get_property(np, "st,click-single-x", NULL)) |
| 969 | pdata->click_flags |= LIS3_CLICK_SINGLE_X; |
| 970 | if (of_get_property(np, "st,click-double-x", NULL)) |
| 971 | pdata->click_flags |= LIS3_CLICK_DOUBLE_X; |
| 972 | |
| 973 | if (of_get_property(np, "st,click-single-y", NULL)) |
| 974 | pdata->click_flags |= LIS3_CLICK_SINGLE_Y; |
| 975 | if (of_get_property(np, "st,click-double-y", NULL)) |
| 976 | pdata->click_flags |= LIS3_CLICK_DOUBLE_Y; |
| 977 | |
| 978 | if (of_get_property(np, "st,click-single-z", NULL)) |
| 979 | pdata->click_flags |= LIS3_CLICK_SINGLE_Z; |
| 980 | if (of_get_property(np, "st,click-double-z", NULL)) |
| 981 | pdata->click_flags |= LIS3_CLICK_DOUBLE_Z; |
| 982 | |
| 983 | if (!of_property_read_u32(np, "st,click-threshold-x", &val)) |
| 984 | pdata->click_thresh_x = val; |
| 985 | if (!of_property_read_u32(np, "st,click-threshold-y", &val)) |
| 986 | pdata->click_thresh_y = val; |
| 987 | if (!of_property_read_u32(np, "st,click-threshold-z", &val)) |
| 988 | pdata->click_thresh_z = val; |
| 989 | |
| 990 | if (!of_property_read_u32(np, "st,click-time-limit", &val)) |
| 991 | pdata->click_time_limit = val; |
| 992 | if (!of_property_read_u32(np, "st,click-latency", &val)) |
| 993 | pdata->click_latency = val; |
| 994 | if (!of_property_read_u32(np, "st,click-window", &val)) |
| 995 | pdata->click_window = val; |
| 996 | |
| 997 | if (of_get_property(np, "st,irq1-disable", NULL)) |
| 998 | pdata->irq_cfg |= LIS3_IRQ1_DISABLE; |
| 999 | if (of_get_property(np, "st,irq1-ff-wu-1", NULL)) |
| 1000 | pdata->irq_cfg |= LIS3_IRQ1_FF_WU_1; |
| 1001 | if (of_get_property(np, "st,irq1-ff-wu-2", NULL)) |
| 1002 | pdata->irq_cfg |= LIS3_IRQ1_FF_WU_2; |
| 1003 | if (of_get_property(np, "st,irq1-data-ready", NULL)) |
| 1004 | pdata->irq_cfg |= LIS3_IRQ1_DATA_READY; |
| 1005 | if (of_get_property(np, "st,irq1-click", NULL)) |
| 1006 | pdata->irq_cfg |= LIS3_IRQ1_CLICK; |
| 1007 | |
| 1008 | if (of_get_property(np, "st,irq2-disable", NULL)) |
| 1009 | pdata->irq_cfg |= LIS3_IRQ2_DISABLE; |
| 1010 | if (of_get_property(np, "st,irq2-ff-wu-1", NULL)) |
| 1011 | pdata->irq_cfg |= LIS3_IRQ2_FF_WU_1; |
| 1012 | if (of_get_property(np, "st,irq2-ff-wu-2", NULL)) |
| 1013 | pdata->irq_cfg |= LIS3_IRQ2_FF_WU_2; |
| 1014 | if (of_get_property(np, "st,irq2-data-ready", NULL)) |
| 1015 | pdata->irq_cfg |= LIS3_IRQ2_DATA_READY; |
| 1016 | if (of_get_property(np, "st,irq2-click", NULL)) |
| 1017 | pdata->irq_cfg |= LIS3_IRQ2_CLICK; |
| 1018 | |
| 1019 | if (of_get_property(np, "st,irq-open-drain", NULL)) |
| 1020 | pdata->irq_cfg |= LIS3_IRQ_OPEN_DRAIN; |
| 1021 | if (of_get_property(np, "st,irq-active-low", NULL)) |
| 1022 | pdata->irq_cfg |= LIS3_IRQ_ACTIVE_LOW; |
| 1023 | |
| 1024 | if (!of_property_read_u32(np, "st,wu-duration-1", &val)) |
| 1025 | pdata->duration1 = val; |
| 1026 | if (!of_property_read_u32(np, "st,wu-duration-2", &val)) |
| 1027 | pdata->duration2 = val; |
| 1028 | |
| 1029 | if (of_get_property(np, "st,wakeup-x-lo", NULL)) |
| 1030 | pdata->wakeup_flags |= LIS3_WAKEUP_X_LO; |
| 1031 | if (of_get_property(np, "st,wakeup-x-hi", NULL)) |
| 1032 | pdata->wakeup_flags |= LIS3_WAKEUP_X_HI; |
| 1033 | if (of_get_property(np, "st,wakeup-y-lo", NULL)) |
| 1034 | pdata->wakeup_flags |= LIS3_WAKEUP_Y_LO; |
| 1035 | if (of_get_property(np, "st,wakeup-y-hi", NULL)) |
| 1036 | pdata->wakeup_flags |= LIS3_WAKEUP_Y_HI; |
| 1037 | if (of_get_property(np, "st,wakeup-z-lo", NULL)) |
| 1038 | pdata->wakeup_flags |= LIS3_WAKEUP_Z_LO; |
| 1039 | if (of_get_property(np, "st,wakeup-z-hi", NULL)) |
| 1040 | pdata->wakeup_flags |= LIS3_WAKEUP_Z_HI; |
Sebastian Reichel | c5131a3 | 2015-03-27 15:39:44 +0100 | [diff] [blame] | 1041 | if (of_get_property(np, "st,wakeup-threshold", &val)) |
| 1042 | pdata->wakeup_thresh = val; |
| 1043 | |
| 1044 | if (of_get_property(np, "st,wakeup2-x-lo", NULL)) |
| 1045 | pdata->wakeup_flags2 |= LIS3_WAKEUP_X_LO; |
| 1046 | if (of_get_property(np, "st,wakeup2-x-hi", NULL)) |
| 1047 | pdata->wakeup_flags2 |= LIS3_WAKEUP_X_HI; |
| 1048 | if (of_get_property(np, "st,wakeup2-y-lo", NULL)) |
| 1049 | pdata->wakeup_flags2 |= LIS3_WAKEUP_Y_LO; |
| 1050 | if (of_get_property(np, "st,wakeup2-y-hi", NULL)) |
| 1051 | pdata->wakeup_flags2 |= LIS3_WAKEUP_Y_HI; |
| 1052 | if (of_get_property(np, "st,wakeup2-z-lo", NULL)) |
| 1053 | pdata->wakeup_flags2 |= LIS3_WAKEUP_Z_LO; |
| 1054 | if (of_get_property(np, "st,wakeup2-z-hi", NULL)) |
| 1055 | pdata->wakeup_flags2 |= LIS3_WAKEUP_Z_HI; |
| 1056 | if (of_get_property(np, "st,wakeup2-threshold", &val)) |
| 1057 | pdata->wakeup_thresh2 = val; |
Daniel Mack | cbac1a8 | 2012-09-26 13:58:16 -0700 | [diff] [blame] | 1058 | |
| 1059 | if (!of_property_read_u32(np, "st,highpass-cutoff-hz", &val)) { |
| 1060 | switch (val) { |
| 1061 | case 1: |
| 1062 | pdata->hipass_ctrl = LIS3_HIPASS_CUTFF_1HZ; |
| 1063 | break; |
| 1064 | case 2: |
| 1065 | pdata->hipass_ctrl = LIS3_HIPASS_CUTFF_2HZ; |
| 1066 | break; |
| 1067 | case 4: |
| 1068 | pdata->hipass_ctrl = LIS3_HIPASS_CUTFF_4HZ; |
| 1069 | break; |
| 1070 | case 8: |
| 1071 | pdata->hipass_ctrl = LIS3_HIPASS_CUTFF_8HZ; |
| 1072 | break; |
| 1073 | } |
| 1074 | } |
| 1075 | |
| 1076 | if (of_get_property(np, "st,hipass1-disable", NULL)) |
| 1077 | pdata->hipass_ctrl |= LIS3_HIPASS1_DISABLE; |
| 1078 | if (of_get_property(np, "st,hipass2-disable", NULL)) |
| 1079 | pdata->hipass_ctrl |= LIS3_HIPASS2_DISABLE; |
| 1080 | |
Sebastian Reichel | cdcd6f8 | 2015-03-27 15:39:43 +0100 | [diff] [blame] | 1081 | if (of_property_read_s32(np, "st,axis-x", &sval) == 0) |
| 1082 | pdata->axis_x = sval; |
| 1083 | if (of_property_read_s32(np, "st,axis-y", &sval) == 0) |
| 1084 | pdata->axis_y = sval; |
| 1085 | if (of_property_read_s32(np, "st,axis-z", &sval) == 0) |
| 1086 | pdata->axis_z = sval; |
Daniel Mack | cbac1a8 | 2012-09-26 13:58:16 -0700 | [diff] [blame] | 1087 | |
| 1088 | if (of_get_property(np, "st,default-rate", NULL)) |
| 1089 | pdata->default_rate = val; |
| 1090 | |
Sebastian Reichel | cdcd6f8 | 2015-03-27 15:39:43 +0100 | [diff] [blame] | 1091 | if (of_property_read_s32(np, "st,min-limit-x", &sval) == 0) |
| 1092 | pdata->st_min_limits[0] = sval; |
| 1093 | if (of_property_read_s32(np, "st,min-limit-y", &sval) == 0) |
| 1094 | pdata->st_min_limits[1] = sval; |
| 1095 | if (of_property_read_s32(np, "st,min-limit-z", &sval) == 0) |
| 1096 | pdata->st_min_limits[2] = sval; |
Daniel Mack | cbac1a8 | 2012-09-26 13:58:16 -0700 | [diff] [blame] | 1097 | |
Sebastian Reichel | cdcd6f8 | 2015-03-27 15:39:43 +0100 | [diff] [blame] | 1098 | if (of_property_read_s32(np, "st,max-limit-x", &sval) == 0) |
| 1099 | pdata->st_max_limits[0] = sval; |
| 1100 | if (of_property_read_s32(np, "st,max-limit-y", &sval) == 0) |
| 1101 | pdata->st_max_limits[1] = sval; |
| 1102 | if (of_property_read_s32(np, "st,max-limit-z", &sval) == 0) |
| 1103 | pdata->st_max_limits[2] = sval; |
Daniel Mack | cbac1a8 | 2012-09-26 13:58:16 -0700 | [diff] [blame] | 1104 | |
| 1105 | |
| 1106 | lis3->pdata = pdata; |
| 1107 | |
| 1108 | return 0; |
| 1109 | } |
| 1110 | |
| 1111 | #else |
AnilKumar Ch | 0c83adb | 2012-09-26 13:58:21 -0700 | [diff] [blame] | 1112 | int lis3lv02d_init_dt(struct lis3lv02d *lis3) |
Daniel Mack | cbac1a8 | 2012-09-26 13:58:16 -0700 | [diff] [blame] | 1113 | { |
| 1114 | return 0; |
| 1115 | } |
| 1116 | #endif |
| 1117 | EXPORT_SYMBOL_GPL(lis3lv02d_init_dt); |
| 1118 | |
Daniel Mack | ab337a6 | 2009-03-31 15:24:31 -0700 | [diff] [blame] | 1119 | /* |
| 1120 | * Initialise the accelerometer and the various subsystems. |
Éric Piel | bc62c14 | 2009-12-14 18:01:39 -0800 | [diff] [blame] | 1121 | * Should be rather independent of the bus system. |
Daniel Mack | ab337a6 | 2009-03-31 15:24:31 -0700 | [diff] [blame] | 1122 | */ |
Éric Piel | d7f81d4 | 2011-10-31 17:10:58 -0700 | [diff] [blame] | 1123 | int lis3lv02d_init_device(struct lis3lv02d *lis3) |
Daniel Mack | ab337a6 | 2009-03-31 15:24:31 -0700 | [diff] [blame] | 1124 | { |
Samu Onkalo | 92ba4fe | 2010-05-24 14:33:36 -0700 | [diff] [blame] | 1125 | int err; |
| 1126 | irq_handler_t thread_fn; |
Samu Onkalo | cc23aa1 | 2010-10-22 07:57:29 -0400 | [diff] [blame] | 1127 | int irq_flags = 0; |
Samu Onkalo | 92ba4fe | 2010-05-24 14:33:36 -0700 | [diff] [blame] | 1128 | |
Éric Piel | d7f81d4 | 2011-10-31 17:10:58 -0700 | [diff] [blame] | 1129 | lis3->whoami = lis3lv02d_read_8(lis3, WHO_AM_I); |
Daniel Mack | a38da2e | 2009-03-31 15:24:32 -0700 | [diff] [blame] | 1130 | |
Éric Piel | d7f81d4 | 2011-10-31 17:10:58 -0700 | [diff] [blame] | 1131 | switch (lis3->whoami) { |
Éric Piel | bc62c14 | 2009-12-14 18:01:39 -0800 | [diff] [blame] | 1132 | case WAI_12B: |
Joe Perches | 63366d3 | 2010-10-20 06:51:40 +0000 | [diff] [blame] | 1133 | pr_info("12 bits sensor found\n"); |
Éric Piel | d7f81d4 | 2011-10-31 17:10:58 -0700 | [diff] [blame] | 1134 | lis3->read_data = lis3lv02d_read_12; |
| 1135 | lis3->mdps_max_val = 2048; |
| 1136 | lis3->pwron_delay = LIS3_PWRON_DELAY_WAI_12B; |
| 1137 | lis3->odrs = lis3_12_rates; |
| 1138 | lis3->odr_mask = CTRL1_DF0 | CTRL1_DF1; |
| 1139 | lis3->scale = LIS3_SENSITIVITY_12B; |
| 1140 | lis3->regs = lis3_wai12_regs; |
| 1141 | lis3->regs_size = ARRAY_SIZE(lis3_wai12_regs); |
Daniel Mack | a38da2e | 2009-03-31 15:24:32 -0700 | [diff] [blame] | 1142 | break; |
Éric Piel | bc62c14 | 2009-12-14 18:01:39 -0800 | [diff] [blame] | 1143 | case WAI_8B: |
Joe Perches | 63366d3 | 2010-10-20 06:51:40 +0000 | [diff] [blame] | 1144 | pr_info("8 bits sensor found\n"); |
Éric Piel | d7f81d4 | 2011-10-31 17:10:58 -0700 | [diff] [blame] | 1145 | lis3->read_data = lis3lv02d_read_8; |
| 1146 | lis3->mdps_max_val = 128; |
| 1147 | lis3->pwron_delay = LIS3_PWRON_DELAY_WAI_8B; |
| 1148 | lis3->odrs = lis3_8_rates; |
| 1149 | lis3->odr_mask = CTRL1_DR; |
| 1150 | lis3->scale = LIS3_SENSITIVITY_8B; |
| 1151 | lis3->regs = lis3_wai8_regs; |
| 1152 | lis3->regs_size = ARRAY_SIZE(lis3_wai8_regs); |
Daniel Mack | a38da2e | 2009-03-31 15:24:32 -0700 | [diff] [blame] | 1153 | break; |
Takashi Iwai | 78537c3 | 2010-09-23 10:01:39 -0700 | [diff] [blame] | 1154 | case WAI_3DC: |
Joe Perches | 63366d3 | 2010-10-20 06:51:40 +0000 | [diff] [blame] | 1155 | pr_info("8 bits 3DC sensor found\n"); |
Éric Piel | d7f81d4 | 2011-10-31 17:10:58 -0700 | [diff] [blame] | 1156 | lis3->read_data = lis3lv02d_read_8; |
| 1157 | lis3->mdps_max_val = 128; |
| 1158 | lis3->pwron_delay = LIS3_PWRON_DELAY_WAI_8B; |
| 1159 | lis3->odrs = lis3_3dc_rates; |
| 1160 | lis3->odr_mask = CTRL1_ODR0|CTRL1_ODR1|CTRL1_ODR2|CTRL1_ODR3; |
| 1161 | lis3->scale = LIS3_SENSITIVITY_8B; |
Takashi Iwai | 78537c3 | 2010-09-23 10:01:39 -0700 | [diff] [blame] | 1162 | break; |
AnilKumar Ch | 0bf5a8b | 2012-08-22 12:00:39 +0530 | [diff] [blame] | 1163 | case WAI_3DLH: |
AnilKumar Ch | e2b2ed8 | 2012-09-24 14:53:49 +0530 | [diff] [blame] | 1164 | pr_info("16 bits lis331dlh sensor found\n"); |
| 1165 | lis3->read_data = lis331dlh_read_data; |
AnilKumar Ch | 0bf5a8b | 2012-08-22 12:00:39 +0530 | [diff] [blame] | 1166 | lis3->mdps_max_val = 2048; /* 12 bits for 2G */ |
| 1167 | lis3->shift_adj = SHIFT_ADJ_2G; |
| 1168 | lis3->pwron_delay = LIS3_PWRON_DELAY_WAI_8B; |
| 1169 | lis3->odrs = lis3_3dlh_rates; |
| 1170 | lis3->odr_mask = CTRL1_DR0 | CTRL1_DR1; |
| 1171 | lis3->scale = LIS3DLH_SENSITIVITY_2G; |
| 1172 | break; |
Daniel Mack | a38da2e | 2009-03-31 15:24:32 -0700 | [diff] [blame] | 1173 | default: |
Éric Piel | d7f81d4 | 2011-10-31 17:10:58 -0700 | [diff] [blame] | 1174 | pr_err("unknown sensor type 0x%X\n", lis3->whoami); |
Hans de Goede | bb6886b | 2021-02-17 11:25:00 +0100 | [diff] [blame] | 1175 | return -ENODEV; |
Daniel Mack | a38da2e | 2009-03-31 15:24:32 -0700 | [diff] [blame] | 1176 | } |
| 1177 | |
Éric Piel | d7f81d4 | 2011-10-31 17:10:58 -0700 | [diff] [blame] | 1178 | lis3->reg_cache = kzalloc(max(sizeof(lis3_wai8_regs), |
Samu Onkalo | f9deb41 | 2010-10-22 07:57:24 -0400 | [diff] [blame] | 1179 | sizeof(lis3_wai12_regs)), GFP_KERNEL); |
| 1180 | |
Hans de Goede | 2278f0c | 2021-02-17 11:25:01 +0100 | [diff] [blame] | 1181 | if (lis3->reg_cache == NULL) |
Samu Onkalo | f9deb41 | 2010-10-22 07:57:24 -0400 | [diff] [blame] | 1182 | return -ENOMEM; |
Samu Onkalo | f9deb41 | 2010-10-22 07:57:24 -0400 | [diff] [blame] | 1183 | |
Éric Piel | d7f81d4 | 2011-10-31 17:10:58 -0700 | [diff] [blame] | 1184 | mutex_init(&lis3->mutex); |
| 1185 | atomic_set(&lis3->wake_thread, 0); |
Samu Onkalo | 2db4a76 | 2009-12-14 18:01:43 -0800 | [diff] [blame] | 1186 | |
Éric Piel | d7f81d4 | 2011-10-31 17:10:58 -0700 | [diff] [blame] | 1187 | lis3lv02d_add_fs(lis3); |
| 1188 | err = lis3lv02d_poweron(lis3); |
Éric Piel | 1510dd5 | 2011-10-31 17:10:31 -0700 | [diff] [blame] | 1189 | if (err) { |
Éric Piel | d7f81d4 | 2011-10-31 17:10:58 -0700 | [diff] [blame] | 1190 | lis3lv02d_remove_fs(lis3); |
Éric Piel | 1510dd5 | 2011-10-31 17:10:31 -0700 | [diff] [blame] | 1191 | return err; |
| 1192 | } |
Daniel Mack | ab337a6 | 2009-03-31 15:24:31 -0700 | [diff] [blame] | 1193 | |
Éric Piel | d7f81d4 | 2011-10-31 17:10:58 -0700 | [diff] [blame] | 1194 | if (lis3->pm_dev) { |
| 1195 | pm_runtime_set_active(lis3->pm_dev); |
| 1196 | pm_runtime_enable(lis3->pm_dev); |
Samu Onkalo | 2a34699 | 2010-10-22 07:57:23 -0400 | [diff] [blame] | 1197 | } |
| 1198 | |
Éric Piel | e1e5687 | 2011-10-31 17:11:02 -0700 | [diff] [blame] | 1199 | if (lis3lv02d_joystick_enable(lis3)) |
Joe Perches | 63366d3 | 2010-10-20 06:51:40 +0000 | [diff] [blame] | 1200 | pr_err("joystick initialization failed\n"); |
Daniel Mack | ab337a6 | 2009-03-31 15:24:31 -0700 | [diff] [blame] | 1201 | |
Daniel Mack | 8f3128e | 2009-06-16 15:34:17 -0700 | [diff] [blame] | 1202 | /* passing in platform specific data is purely optional and only |
| 1203 | * used by the SPI transport layer at the moment */ |
Éric Piel | d7f81d4 | 2011-10-31 17:10:58 -0700 | [diff] [blame] | 1204 | if (lis3->pdata) { |
| 1205 | struct lis3lv02d_platform_data *p = lis3->pdata; |
Daniel Mack | 8f3128e | 2009-06-16 15:34:17 -0700 | [diff] [blame] | 1206 | |
Éric Piel | d7f81d4 | 2011-10-31 17:10:58 -0700 | [diff] [blame] | 1207 | if (lis3->whoami == WAI_8B) |
| 1208 | lis3lv02d_8b_configure(lis3, p); |
Daniel Mack | 8873c33 | 2009-09-21 17:04:43 -0700 | [diff] [blame] | 1209 | |
Samu Onkalo | cc23aa1 | 2010-10-22 07:57:29 -0400 | [diff] [blame] | 1210 | irq_flags = p->irq_flags1 & IRQF_TRIGGER_MASK; |
| 1211 | |
Éric Piel | d7f81d4 | 2011-10-31 17:10:58 -0700 | [diff] [blame] | 1212 | lis3->irq_cfg = p->irq_cfg; |
Daniel Mack | 8f3128e | 2009-06-16 15:34:17 -0700 | [diff] [blame] | 1213 | if (p->irq_cfg) |
Éric Piel | d7f81d4 | 2011-10-31 17:10:58 -0700 | [diff] [blame] | 1214 | lis3->write(lis3, CTRL_REG3, p->irq_cfg); |
Samu Onkalo | cc23aa1 | 2010-10-22 07:57:29 -0400 | [diff] [blame] | 1215 | |
| 1216 | if (p->default_rate) |
Éric Piel | 895c156 | 2011-10-31 17:11:05 -0700 | [diff] [blame] | 1217 | lis3lv02d_set_odr(lis3, p->default_rate); |
Daniel Mack | 8f3128e | 2009-06-16 15:34:17 -0700 | [diff] [blame] | 1218 | } |
| 1219 | |
Daniel Mack | a38da2e | 2009-03-31 15:24:32 -0700 | [diff] [blame] | 1220 | /* bail if we did not get an IRQ from the bus layer */ |
Éric Piel | d7f81d4 | 2011-10-31 17:10:58 -0700 | [diff] [blame] | 1221 | if (!lis3->irq) { |
Kalhan Trisal | a20f0bc | 2011-01-25 14:24:37 +0000 | [diff] [blame] | 1222 | pr_debug("No IRQ. Disabling /dev/freefall\n"); |
Daniel Mack | ab337a6 | 2009-03-31 15:24:31 -0700 | [diff] [blame] | 1223 | goto out; |
| 1224 | } |
| 1225 | |
Samu Onkalo | 92ba4fe | 2010-05-24 14:33:36 -0700 | [diff] [blame] | 1226 | /* |
| 1227 | * The sensor can generate interrupts for free-fall and direction |
| 1228 | * detection (distinguishable with FF_WU_SRC and DD_SRC) but to keep |
| 1229 | * the things simple and _fast_ we activate it only for free-fall, so |
| 1230 | * no need to read register (very slow with ACPI). For the same reason, |
| 1231 | * we forbid shared interrupts. |
| 1232 | * |
| 1233 | * IRQF_TRIGGER_RISING seems pointless on HP laptops because the |
| 1234 | * io-apic is not configurable (and generates a warning) but I keep it |
| 1235 | * in case of support for other hardware. |
| 1236 | */ |
Éric Piel | d7f81d4 | 2011-10-31 17:10:58 -0700 | [diff] [blame] | 1237 | if (lis3->pdata && lis3->whoami == WAI_8B) |
Samu Onkalo | 92ba4fe | 2010-05-24 14:33:36 -0700 | [diff] [blame] | 1238 | thread_fn = lis302dl_interrupt_thread1_8b; |
| 1239 | else |
| 1240 | thread_fn = NULL; |
| 1241 | |
Éric Piel | d7f81d4 | 2011-10-31 17:10:58 -0700 | [diff] [blame] | 1242 | err = request_threaded_irq(lis3->irq, lis302dl_interrupt, |
Samu Onkalo | 92ba4fe | 2010-05-24 14:33:36 -0700 | [diff] [blame] | 1243 | thread_fn, |
Samu Onkalo | cc23aa1 | 2010-10-22 07:57:29 -0400 | [diff] [blame] | 1244 | IRQF_TRIGGER_RISING | IRQF_ONESHOT | |
| 1245 | irq_flags, |
Éric Piel | 895c156 | 2011-10-31 17:11:05 -0700 | [diff] [blame] | 1246 | DRIVER_NAME, lis3); |
Samu Onkalo | 92ba4fe | 2010-05-24 14:33:36 -0700 | [diff] [blame] | 1247 | |
| 1248 | if (err < 0) { |
Joe Perches | 63366d3 | 2010-10-20 06:51:40 +0000 | [diff] [blame] | 1249 | pr_err("Cannot get IRQ\n"); |
Samu Onkalo | 92ba4fe | 2010-05-24 14:33:36 -0700 | [diff] [blame] | 1250 | goto out; |
| 1251 | } |
| 1252 | |
Éric Piel | 895c156 | 2011-10-31 17:11:05 -0700 | [diff] [blame] | 1253 | lis3->miscdev.minor = MISC_DYNAMIC_MINOR; |
| 1254 | lis3->miscdev.name = "freefall"; |
| 1255 | lis3->miscdev.fops = &lis3lv02d_misc_fops; |
| 1256 | |
| 1257 | if (misc_register(&lis3->miscdev)) |
Joe Perches | 63366d3 | 2010-10-20 06:51:40 +0000 | [diff] [blame] | 1258 | pr_err("misc_register failed\n"); |
Daniel Mack | ab337a6 | 2009-03-31 15:24:31 -0700 | [diff] [blame] | 1259 | out: |
Daniel Mack | ab337a6 | 2009-03-31 15:24:31 -0700 | [diff] [blame] | 1260 | return 0; |
| 1261 | } |
| 1262 | EXPORT_SYMBOL_GPL(lis3lv02d_init_device); |
| 1263 | |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 1264 | MODULE_DESCRIPTION("ST LIS3LV02Dx three-axis digital accelerometer driver"); |
Pavel Machek | ef2cfc7 | 2009-02-18 14:48:23 -0800 | [diff] [blame] | 1265 | MODULE_AUTHOR("Yan Burman, Eric Piel, Pavel Machek"); |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 1266 | MODULE_LICENSE("GPL"); |