blob: 43ecacbdc95ae2577e1fc28588d463bcefb400ec [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
Jonathan Cameron574fb252009-08-18 18:06:25 +01002/*
3 * sca3000_core.c -- support VTI sca3000 series accelerometers via SPI
4 *
Jonathan Cameron0f8c9622012-09-02 21:34:59 +01005 * Copyright (c) 2009 Jonathan Cameron <jic23@kernel.org>
Jonathan Cameron574fb252009-08-18 18:06:25 +01006 *
7 * See industrialio/accels/sca3000.h for comments.
8 */
9
10#include <linux/interrupt.h>
Jonathan Cameron574fb252009-08-18 18:06:25 +010011#include <linux/fs.h>
12#include <linux/device.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090013#include <linux/slab.h>
Jonathan Cameron574fb252009-08-18 18:06:25 +010014#include <linux/kernel.h>
15#include <linux/spi/spi.h>
16#include <linux/sysfs.h>
Paul Gortmaker99c97852011-07-03 15:49:50 -040017#include <linux/module.h>
Jonathan Cameronced5c032016-10-08 17:39:02 +010018#include <linux/uaccess.h>
Jonathan Cameron06458e22012-04-25 15:54:58 +010019#include <linux/iio/iio.h>
20#include <linux/iio/sysfs.h>
21#include <linux/iio/events.h>
22#include <linux/iio/buffer.h>
Jonathan Cameron152a6a82016-10-08 17:39:06 +010023#include <linux/iio/kfifo_buf.h>
Jonathan Cameron574fb252009-08-18 18:06:25 +010024
Jonathan Cameronced5c032016-10-08 17:39:02 +010025#define SCA3000_WRITE_REG(a) (((a) << 2) | 0x02)
26#define SCA3000_READ_REG(a) ((a) << 2)
27
Jonathan Cameron9bc11d32016-10-08 17:39:09 +010028#define SCA3000_REG_REVID_ADDR 0x00
29#define SCA3000_REG_REVID_MAJOR_MASK GENMASK(8, 4)
30#define SCA3000_REG_REVID_MINOR_MASK GENMASK(3, 0)
Jonathan Cameronced5c032016-10-08 17:39:02 +010031
Jonathan Cameron9bc11d32016-10-08 17:39:09 +010032#define SCA3000_REG_STATUS_ADDR 0x02
33#define SCA3000_LOCKED BIT(5)
34#define SCA3000_EEPROM_CS_ERROR BIT(1)
35#define SCA3000_SPI_FRAME_ERROR BIT(0)
Reno Farnesi893bd0e2017-06-26 21:45:22 -040036
Jonathan Cameronced5c032016-10-08 17:39:02 +010037/* All reads done using register decrement so no need to directly access LSBs */
Jonathan Cameron9bc11d32016-10-08 17:39:09 +010038#define SCA3000_REG_X_MSB_ADDR 0x05
39#define SCA3000_REG_Y_MSB_ADDR 0x07
40#define SCA3000_REG_Z_MSB_ADDR 0x09
Jonathan Cameronced5c032016-10-08 17:39:02 +010041
Jonathan Cameron9bc11d32016-10-08 17:39:09 +010042#define SCA3000_REG_RING_OUT_ADDR 0x0f
Jonathan Cameronced5c032016-10-08 17:39:02 +010043
44/* Temp read untested - the e05 doesn't have the sensor */
Jonathan Cameron9bc11d32016-10-08 17:39:09 +010045#define SCA3000_REG_TEMP_MSB_ADDR 0x13
Jonathan Cameronced5c032016-10-08 17:39:02 +010046
Jonathan Cameron9bc11d32016-10-08 17:39:09 +010047#define SCA3000_REG_MODE_ADDR 0x14
48#define SCA3000_MODE_PROT_MASK 0x28
49#define SCA3000_REG_MODE_RING_BUF_ENABLE BIT(7)
50#define SCA3000_REG_MODE_RING_BUF_8BIT BIT(6)
Jonathan Cameronced5c032016-10-08 17:39:02 +010051
Jonathan Cameronced5c032016-10-08 17:39:02 +010052/*
53 * Free fall detection triggers an interrupt if the acceleration
54 * is below a threshold for equivalent of 25cm drop
55 */
Jonathan Cameron9bc11d32016-10-08 17:39:09 +010056#define SCA3000_REG_MODE_FREE_FALL_DETECT BIT(4)
57#define SCA3000_REG_MODE_MEAS_MODE_NORMAL 0x00
58#define SCA3000_REG_MODE_MEAS_MODE_OP_1 0x01
59#define SCA3000_REG_MODE_MEAS_MODE_OP_2 0x02
Jonathan Cameronced5c032016-10-08 17:39:02 +010060
61/*
62 * In motion detection mode the accelerations are band pass filtered
63 * (approx 1 - 25Hz) and then a programmable threshold used to trigger
64 * and interrupt.
65 */
Jonathan Cameron9bc11d32016-10-08 17:39:09 +010066#define SCA3000_REG_MODE_MEAS_MODE_MOT_DET 0x03
67#define SCA3000_REG_MODE_MODE_MASK 0x03
Jonathan Cameronced5c032016-10-08 17:39:02 +010068
Jonathan Cameron9bc11d32016-10-08 17:39:09 +010069#define SCA3000_REG_BUF_COUNT_ADDR 0x15
Jonathan Cameronced5c032016-10-08 17:39:02 +010070
Jonathan Cameron9bc11d32016-10-08 17:39:09 +010071#define SCA3000_REG_INT_STATUS_ADDR 0x16
72#define SCA3000_REG_INT_STATUS_THREE_QUARTERS BIT(7)
73#define SCA3000_REG_INT_STATUS_HALF BIT(6)
Reno Farnesi893bd0e2017-06-26 21:45:22 -040074
Jonathan Cameron9bc11d32016-10-08 17:39:09 +010075#define SCA3000_INT_STATUS_FREE_FALL BIT(3)
76#define SCA3000_INT_STATUS_Y_TRIGGER BIT(2)
77#define SCA3000_INT_STATUS_X_TRIGGER BIT(1)
78#define SCA3000_INT_STATUS_Z_TRIGGER BIT(0)
Jonathan Cameronced5c032016-10-08 17:39:02 +010079
80/* Used to allow access to multiplexed registers */
Jonathan Cameron9bc11d32016-10-08 17:39:09 +010081#define SCA3000_REG_CTRL_SEL_ADDR 0x18
Jonathan Cameronced5c032016-10-08 17:39:02 +010082/* Only available for SCA3000-D03 and SCA3000-D01 */
Jonathan Cameron9bc11d32016-10-08 17:39:09 +010083#define SCA3000_REG_CTRL_SEL_I2C_DISABLE 0x01
84#define SCA3000_REG_CTRL_SEL_MD_CTRL 0x02
85#define SCA3000_REG_CTRL_SEL_MD_Y_TH 0x03
86#define SCA3000_REG_CTRL_SEL_MD_X_TH 0x04
87#define SCA3000_REG_CTRL_SEL_MD_Z_TH 0x05
Jonathan Cameronced5c032016-10-08 17:39:02 +010088/*
89 * BE VERY CAREFUL WITH THIS, IF 3 BITS ARE NOT SET the device
90 * will not function
91 */
Jonathan Cameron9bc11d32016-10-08 17:39:09 +010092#define SCA3000_REG_CTRL_SEL_OUT_CTRL 0x0B
93
94#define SCA3000_REG_OUT_CTRL_PROT_MASK 0xE0
95#define SCA3000_REG_OUT_CTRL_BUF_X_EN 0x10
96#define SCA3000_REG_OUT_CTRL_BUF_Y_EN 0x08
97#define SCA3000_REG_OUT_CTRL_BUF_Z_EN 0x04
98#define SCA3000_REG_OUT_CTRL_BUF_DIV_MASK 0x03
99#define SCA3000_REG_OUT_CTRL_BUF_DIV_4 0x02
100#define SCA3000_REG_OUT_CTRL_BUF_DIV_2 0x01
101
Jonathan Cameronced5c032016-10-08 17:39:02 +0100102
103/*
104 * Control which motion detector interrupts are on.
105 * For now only OR combinations are supported.
106 */
Jonathan Cameron9bc11d32016-10-08 17:39:09 +0100107#define SCA3000_MD_CTRL_PROT_MASK 0xC0
108#define SCA3000_MD_CTRL_OR_Y BIT(0)
109#define SCA3000_MD_CTRL_OR_X BIT(1)
110#define SCA3000_MD_CTRL_OR_Z BIT(2)
Jonathan Cameronced5c032016-10-08 17:39:02 +0100111/* Currently unsupported */
Jonathan Cameron9bc11d32016-10-08 17:39:09 +0100112#define SCA3000_MD_CTRL_AND_Y BIT(3)
113#define SCA3000_MD_CTRL_AND_X BIT(4)
Christophe JAILLET80343f52019-07-21 12:53:53 +0200114#define SCA3000_MD_CTRL_AND_Z BIT(5)
Jonathan Cameronced5c032016-10-08 17:39:02 +0100115
116/*
117 * Some control registers of complex access methods requiring this register to
118 * be used to remove a lock.
119 */
Jonathan Cameron9bc11d32016-10-08 17:39:09 +0100120#define SCA3000_REG_UNLOCK_ADDR 0x1e
Jonathan Cameronced5c032016-10-08 17:39:02 +0100121
Jonathan Cameron9bc11d32016-10-08 17:39:09 +0100122#define SCA3000_REG_INT_MASK_ADDR 0x21
123#define SCA3000_REG_INT_MASK_PROT_MASK 0x1C
Reno Farnesi893bd0e2017-06-26 21:45:22 -0400124
Jonathan Cameron9bc11d32016-10-08 17:39:09 +0100125#define SCA3000_REG_INT_MASK_RING_THREE_QUARTER BIT(7)
126#define SCA3000_REG_INT_MASK_RING_HALF BIT(6)
Jonathan Cameronced5c032016-10-08 17:39:02 +0100127
Jonathan Cameron9bc11d32016-10-08 17:39:09 +0100128#define SCA3000_REG_INT_MASK_ALL_INTS 0x02
129#define SCA3000_REG_INT_MASK_ACTIVE_HIGH 0x01
130#define SCA3000_REG_INT_MASK_ACTIVE_LOW 0x00
Jonathan Cameronced5c032016-10-08 17:39:02 +0100131/* Values of multiplexed registers (write to ctrl_data after select) */
Jonathan Cameron9bc11d32016-10-08 17:39:09 +0100132#define SCA3000_REG_CTRL_DATA_ADDR 0x22
Jonathan Cameronced5c032016-10-08 17:39:02 +0100133
134/*
135 * Measurement modes available on some sca3000 series chips. Code assumes others
136 * may become available in the future.
137 *
138 * Bypass - Bypass the low-pass filter in the signal channel so as to increase
139 * signal bandwidth.
140 *
141 * Narrow - Narrow low-pass filtering of the signal channel and half output
142 * data rate by decimation.
143 *
144 * Wide - Widen low-pass filtering of signal channel to increase bandwidth
145 */
Jonathan Cameron9bc11d32016-10-08 17:39:09 +0100146#define SCA3000_OP_MODE_BYPASS 0x01
147#define SCA3000_OP_MODE_NARROW 0x02
148#define SCA3000_OP_MODE_WIDE 0x04
Jonathan Cameronced5c032016-10-08 17:39:02 +0100149#define SCA3000_MAX_TX 6
150#define SCA3000_MAX_RX 2
151
152/**
153 * struct sca3000_state - device instance state information
154 * @us: the associated spi device
155 * @info: chip variant information
Jonathan Cameronced5c032016-10-08 17:39:02 +0100156 * @last_timestamp: the timestamp of the last event
157 * @mo_det_use_count: reference counter for the motion detection unit
158 * @lock: lock used to protect elements of sca3000_state
159 * and the underlying device state.
Jonathan Cameronced5c032016-10-08 17:39:02 +0100160 * @tx: dma-able transmit buffer
161 * @rx: dma-able receive buffer
162 **/
163struct sca3000_state {
164 struct spi_device *us;
165 const struct sca3000_chip_info *info;
Jonathan Cameronced5c032016-10-08 17:39:02 +0100166 s64 last_timestamp;
167 int mo_det_use_count;
168 struct mutex lock;
Jonathan Cameronced5c032016-10-08 17:39:02 +0100169 /* Can these share a cacheline ? */
Jonathan Cameron152a6a82016-10-08 17:39:06 +0100170 u8 rx[384] ____cacheline_aligned;
Jonathan Cameronced5c032016-10-08 17:39:02 +0100171 u8 tx[6] ____cacheline_aligned;
172};
173
174/**
175 * struct sca3000_chip_info - model dependent parameters
176 * @scale: scale * 10^-6
177 * @temp_output: some devices have temperature sensors.
178 * @measurement_mode_freq: normal mode sampling frequency
Jonathan Cameron2ccf6142016-10-08 17:39:17 +0100179 * @measurement_mode_3db_freq: 3db cutoff frequency of the low pass filter for
180 * the normal measurement mode.
Jonathan Cameronced5c032016-10-08 17:39:02 +0100181 * @option_mode_1: first optional mode. Not all models have one
182 * @option_mode_1_freq: option mode 1 sampling frequency
Jonathan Cameron2ccf6142016-10-08 17:39:17 +0100183 * @option_mode_1_3db_freq: 3db cutoff frequency of the low pass filter for
184 * the first option mode.
Jonathan Cameronced5c032016-10-08 17:39:02 +0100185 * @option_mode_2: second optional mode. Not all chips have one
186 * @option_mode_2_freq: option mode 2 sampling frequency
Jonathan Cameron2ccf6142016-10-08 17:39:17 +0100187 * @option_mode_2_3db_freq: 3db cutoff frequency of the low pass filter for
188 * the second option mode.
Lee Jonesfb37b5f2020-07-17 17:55:24 +0100189 * @mot_det_mult_xz: Bit wise multipliers to calculate the threshold
Jonathan Cameron2ccf6142016-10-08 17:39:17 +0100190 * for motion detection in the x and z axis.
Lee Jonesfb37b5f2020-07-17 17:55:24 +0100191 * @mot_det_mult_y: Bit wise multipliers to calculate the threshold
Jonathan Cameron2ccf6142016-10-08 17:39:17 +0100192 * for motion detection in the y axis.
Jonathan Cameronced5c032016-10-08 17:39:02 +0100193 *
194 * This structure is used to hold information about the functionality of a given
195 * sca3000 variant.
196 **/
197struct sca3000_chip_info {
198 unsigned int scale;
199 bool temp_output;
200 int measurement_mode_freq;
Jonathan Cameron085fe1b2016-10-08 17:39:10 +0100201 int measurement_mode_3db_freq;
Jonathan Cameronced5c032016-10-08 17:39:02 +0100202 int option_mode_1;
203 int option_mode_1_freq;
Jonathan Cameron085fe1b2016-10-08 17:39:10 +0100204 int option_mode_1_3db_freq;
Jonathan Cameronced5c032016-10-08 17:39:02 +0100205 int option_mode_2;
206 int option_mode_2_freq;
Jonathan Cameron085fe1b2016-10-08 17:39:10 +0100207 int option_mode_2_3db_freq;
Jonathan Cameronced5c032016-10-08 17:39:02 +0100208 int mot_det_mult_xz[6];
209 int mot_det_mult_y[7];
210};
Jonathan Cameron574fb252009-08-18 18:06:25 +0100211
212enum sca3000_variant {
213 d01,
Jonathan Cameron574fb252009-08-18 18:06:25 +0100214 e02,
215 e04,
216 e05,
Jonathan Cameron574fb252009-08-18 18:06:25 +0100217};
218
Peter Meerwald5262d8f2014-01-13 21:28:00 +0000219/*
220 * Note where option modes are not defined, the chip simply does not
Jonathan Cameron574fb252009-08-18 18:06:25 +0100221 * support any.
222 * Other chips in the sca3000 series use i2c and are not included here.
223 *
224 * Some of these devices are only listed in the family data sheet and
225 * do not actually appear to be available.
226 */
227static const struct sca3000_chip_info sca3000_spi_chip_info_tbl[] = {
Jonathan Cameron845bd122011-05-18 14:41:44 +0100228 [d01] = {
Jonathan Cameron25888dc2011-05-18 14:41:01 +0100229 .scale = 7357,
Jonathan Cameron574fb252009-08-18 18:06:25 +0100230 .temp_output = true,
231 .measurement_mode_freq = 250,
Jonathan Cameron085fe1b2016-10-08 17:39:10 +0100232 .measurement_mode_3db_freq = 45,
Jonathan Cameron574fb252009-08-18 18:06:25 +0100233 .option_mode_1 = SCA3000_OP_MODE_BYPASS,
234 .option_mode_1_freq = 250,
Jonathan Cameron085fe1b2016-10-08 17:39:10 +0100235 .option_mode_1_3db_freq = 70,
Jonathan Cameron25888dc2011-05-18 14:41:01 +0100236 .mot_det_mult_xz = {50, 100, 200, 350, 650, 1300},
237 .mot_det_mult_y = {50, 100, 150, 250, 450, 850, 1750},
Jonathan Cameron845bd122011-05-18 14:41:44 +0100238 },
239 [e02] = {
Jonathan Cameron25888dc2011-05-18 14:41:01 +0100240 .scale = 9810,
Jonathan Cameron574fb252009-08-18 18:06:25 +0100241 .measurement_mode_freq = 125,
Jonathan Cameron085fe1b2016-10-08 17:39:10 +0100242 .measurement_mode_3db_freq = 40,
Jonathan Cameron574fb252009-08-18 18:06:25 +0100243 .option_mode_1 = SCA3000_OP_MODE_NARROW,
244 .option_mode_1_freq = 63,
Jonathan Cameron085fe1b2016-10-08 17:39:10 +0100245 .option_mode_1_3db_freq = 11,
Jonathan Cameron25888dc2011-05-18 14:41:01 +0100246 .mot_det_mult_xz = {100, 150, 300, 550, 1050, 2050},
247 .mot_det_mult_y = {50, 100, 200, 350, 700, 1350, 2700},
Jonathan Cameron845bd122011-05-18 14:41:44 +0100248 },
249 [e04] = {
Jonathan Cameron25888dc2011-05-18 14:41:01 +0100250 .scale = 19620,
Jonathan Cameron574fb252009-08-18 18:06:25 +0100251 .measurement_mode_freq = 100,
Jonathan Cameron085fe1b2016-10-08 17:39:10 +0100252 .measurement_mode_3db_freq = 38,
Jonathan Cameron574fb252009-08-18 18:06:25 +0100253 .option_mode_1 = SCA3000_OP_MODE_NARROW,
254 .option_mode_1_freq = 50,
Jonathan Cameron085fe1b2016-10-08 17:39:10 +0100255 .option_mode_1_3db_freq = 9,
Jonathan Cameron574fb252009-08-18 18:06:25 +0100256 .option_mode_2 = SCA3000_OP_MODE_WIDE,
257 .option_mode_2_freq = 400,
Jonathan Cameron085fe1b2016-10-08 17:39:10 +0100258 .option_mode_2_3db_freq = 70,
Jonathan Cameron25888dc2011-05-18 14:41:01 +0100259 .mot_det_mult_xz = {200, 300, 600, 1100, 2100, 4100},
260 .mot_det_mult_y = {100, 200, 400, 7000, 1400, 2700, 54000},
Jonathan Cameron845bd122011-05-18 14:41:44 +0100261 },
262 [e05] = {
Jonathan Cameron25888dc2011-05-18 14:41:01 +0100263 .scale = 61313,
Jonathan Cameron574fb252009-08-18 18:06:25 +0100264 .measurement_mode_freq = 200,
Jonathan Cameron085fe1b2016-10-08 17:39:10 +0100265 .measurement_mode_3db_freq = 60,
Jonathan Cameron574fb252009-08-18 18:06:25 +0100266 .option_mode_1 = SCA3000_OP_MODE_NARROW,
267 .option_mode_1_freq = 50,
Jonathan Cameron085fe1b2016-10-08 17:39:10 +0100268 .option_mode_1_3db_freq = 9,
Jonathan Cameron574fb252009-08-18 18:06:25 +0100269 .option_mode_2 = SCA3000_OP_MODE_WIDE,
270 .option_mode_2_freq = 400,
Jonathan Cameron085fe1b2016-10-08 17:39:10 +0100271 .option_mode_2_3db_freq = 75,
Jonathan Cameron25888dc2011-05-18 14:41:01 +0100272 .mot_det_mult_xz = {600, 900, 1700, 3200, 6100, 11900},
273 .mot_det_mult_y = {300, 600, 1200, 2000, 4100, 7800, 15600},
Jonathan Cameron574fb252009-08-18 18:06:25 +0100274 },
275};
276
Jonathan Cameronced5c032016-10-08 17:39:02 +0100277static int sca3000_write_reg(struct sca3000_state *st, u8 address, u8 val)
Jonathan Cameron574fb252009-08-18 18:06:25 +0100278{
Jonathan Cameron574fb252009-08-18 18:06:25 +0100279 st->tx[0] = SCA3000_WRITE_REG(address);
280 st->tx[1] = val;
Jonathan Cameron25888dc2011-05-18 14:41:01 +0100281 return spi_write(st->us, st->tx, 2);
282}
283
Jonathan Cameronced5c032016-10-08 17:39:02 +0100284static int sca3000_read_data_short(struct sca3000_state *st,
Jonathan Cameron389c5832016-10-08 17:39:16 +0100285 u8 reg_address_high,
286 int len)
Jonathan Cameron25888dc2011-05-18 14:41:01 +0100287{
Jonathan Cameron25888dc2011-05-18 14:41:01 +0100288 struct spi_transfer xfer[2] = {
289 {
290 .len = 1,
291 .tx_buf = st->tx,
292 }, {
293 .len = len,
294 .rx_buf = st->rx,
295 }
296 };
297 st->tx[0] = SCA3000_READ_REG(reg_address_high);
Jonathan Cameron574fb252009-08-18 18:06:25 +0100298
Lars-Peter Clausenad6c46b2013-01-09 17:31:00 +0000299 return spi_sync_transfer(st->us, xfer, ARRAY_SIZE(xfer));
Jonathan Cameron574fb252009-08-18 18:06:25 +0100300}
301
Jonathan Cameron574fb252009-08-18 18:06:25 +0100302/**
Jonathan Cameron2ccf6142016-10-08 17:39:17 +0100303 * sca3000_reg_lock_on() - test if the ctrl register lock is on
304 * @st: Driver specific device instance data.
Jonathan Cameron574fb252009-08-18 18:06:25 +0100305 *
306 * Lock must be held.
307 **/
308static int sca3000_reg_lock_on(struct sca3000_state *st)
309{
Jonathan Cameron574fb252009-08-18 18:06:25 +0100310 int ret;
311
Jonathan Cameron9bc11d32016-10-08 17:39:09 +0100312 ret = sca3000_read_data_short(st, SCA3000_REG_STATUS_ADDR, 1);
Jonathan Cameron574fb252009-08-18 18:06:25 +0100313 if (ret < 0)
314 return ret;
Jonathan Cameron574fb252009-08-18 18:06:25 +0100315
Jonathan Cameron25888dc2011-05-18 14:41:01 +0100316 return !(st->rx[0] & SCA3000_LOCKED);
Jonathan Cameron574fb252009-08-18 18:06:25 +0100317}
318
319/**
Jonathan Cameron2ccf6142016-10-08 17:39:17 +0100320 * __sca3000_unlock_reg_lock() - unlock the control registers
321 * @st: Driver specific device instance data.
Jonathan Cameron574fb252009-08-18 18:06:25 +0100322 *
323 * Note the device does not appear to support doing this in a single transfer.
324 * This should only ever be used as part of ctrl reg read.
325 * Lock must be held before calling this
Jonathan Cameron2ccf6142016-10-08 17:39:17 +0100326 */
Jonathan Cameron574fb252009-08-18 18:06:25 +0100327static int __sca3000_unlock_reg_lock(struct sca3000_state *st)
328{
Jonathan Cameron574fb252009-08-18 18:06:25 +0100329 struct spi_transfer xfer[3] = {
330 {
Jonathan Cameron574fb252009-08-18 18:06:25 +0100331 .len = 2,
332 .cs_change = 1,
333 .tx_buf = st->tx,
334 }, {
Jonathan Cameron574fb252009-08-18 18:06:25 +0100335 .len = 2,
336 .cs_change = 1,
337 .tx_buf = st->tx + 2,
338 }, {
Jonathan Cameron574fb252009-08-18 18:06:25 +0100339 .len = 2,
Jonathan Cameron574fb252009-08-18 18:06:25 +0100340 .tx_buf = st->tx + 4,
341 },
342 };
Jonathan Cameron9bc11d32016-10-08 17:39:09 +0100343 st->tx[0] = SCA3000_WRITE_REG(SCA3000_REG_UNLOCK_ADDR);
Jonathan Cameron574fb252009-08-18 18:06:25 +0100344 st->tx[1] = 0x00;
Jonathan Cameron9bc11d32016-10-08 17:39:09 +0100345 st->tx[2] = SCA3000_WRITE_REG(SCA3000_REG_UNLOCK_ADDR);
Jonathan Cameron574fb252009-08-18 18:06:25 +0100346 st->tx[3] = 0x50;
Jonathan Cameron9bc11d32016-10-08 17:39:09 +0100347 st->tx[4] = SCA3000_WRITE_REG(SCA3000_REG_UNLOCK_ADDR);
Jonathan Cameron574fb252009-08-18 18:06:25 +0100348 st->tx[5] = 0xA0;
Jonathan Cameron574fb252009-08-18 18:06:25 +0100349
Lars-Peter Clausenad6c46b2013-01-09 17:31:00 +0000350 return spi_sync_transfer(st->us, xfer, ARRAY_SIZE(xfer));
Jonathan Cameron574fb252009-08-18 18:06:25 +0100351}
352
353/**
Jonathan Camerond7f1c0c2021-03-14 16:46:54 +0000354 * sca3000_write_ctrl_reg() - write to a lock protect ctrl register
Jonathan Cameron2ccf6142016-10-08 17:39:17 +0100355 * @st: Driver specific device instance data.
Jonathan Cameron574fb252009-08-18 18:06:25 +0100356 * @sel: selects which registers we wish to write to
357 * @val: the value to be written
358 *
359 * Certain control registers are protected against overwriting by the lock
360 * register and use a shared write address. This function allows writing of
361 * these registers.
362 * Lock must be held.
Jonathan Cameron2ccf6142016-10-08 17:39:17 +0100363 */
Jonathan Cameron574fb252009-08-18 18:06:25 +0100364static int sca3000_write_ctrl_reg(struct sca3000_state *st,
Ioana Ciornei89ea25c2015-10-29 01:01:50 +0200365 u8 sel,
Jonathan Cameron574fb252009-08-18 18:06:25 +0100366 uint8_t val)
367{
Jonathan Cameron574fb252009-08-18 18:06:25 +0100368 int ret;
369
370 ret = sca3000_reg_lock_on(st);
371 if (ret < 0)
372 goto error_ret;
373 if (ret) {
374 ret = __sca3000_unlock_reg_lock(st);
375 if (ret)
376 goto error_ret;
377 }
378
379 /* Set the control select register */
Jonathan Cameron9bc11d32016-10-08 17:39:09 +0100380 ret = sca3000_write_reg(st, SCA3000_REG_CTRL_SEL_ADDR, sel);
Jonathan Cameron574fb252009-08-18 18:06:25 +0100381 if (ret)
382 goto error_ret;
383
384 /* Write the actual value into the register */
Jonathan Cameron9bc11d32016-10-08 17:39:09 +0100385 ret = sca3000_write_reg(st, SCA3000_REG_CTRL_DATA_ADDR, val);
Jonathan Cameron574fb252009-08-18 18:06:25 +0100386
387error_ret:
388 return ret;
389}
390
Jonathan Cameron574fb252009-08-18 18:06:25 +0100391/**
Jonathan Camerond7f1c0c2021-03-14 16:46:54 +0000392 * sca3000_read_ctrl_reg() - read from lock protected control register.
Jonathan Cameron2ccf6142016-10-08 17:39:17 +0100393 * @st: Driver specific device instance data.
394 * @ctrl_reg: Which ctrl register do we want to read.
Jonathan Cameron574fb252009-08-18 18:06:25 +0100395 *
396 * Lock must be held.
Jonathan Cameron2ccf6142016-10-08 17:39:17 +0100397 */
Jonathan Cameron574fb252009-08-18 18:06:25 +0100398static int sca3000_read_ctrl_reg(struct sca3000_state *st,
Jonathan Cameron25888dc2011-05-18 14:41:01 +0100399 u8 ctrl_reg)
Jonathan Cameron574fb252009-08-18 18:06:25 +0100400{
401 int ret;
402
403 ret = sca3000_reg_lock_on(st);
404 if (ret < 0)
405 goto error_ret;
406 if (ret) {
407 ret = __sca3000_unlock_reg_lock(st);
408 if (ret)
409 goto error_ret;
410 }
411 /* Set the control select register */
Jonathan Cameron9bc11d32016-10-08 17:39:09 +0100412 ret = sca3000_write_reg(st, SCA3000_REG_CTRL_SEL_ADDR, ctrl_reg);
Jonathan Cameron574fb252009-08-18 18:06:25 +0100413 if (ret)
414 goto error_ret;
Jonathan Cameron9bc11d32016-10-08 17:39:09 +0100415 ret = sca3000_read_data_short(st, SCA3000_REG_CTRL_DATA_ADDR, 1);
Jonathan Cameron25888dc2011-05-18 14:41:01 +0100416 if (ret)
417 goto error_ret;
Janani Ravichandran911568b2016-02-18 16:22:29 -0500418 return st->rx[0];
Jonathan Cameron574fb252009-08-18 18:06:25 +0100419error_ret:
420 return ret;
421}
422
Jonathan Cameron574fb252009-08-18 18:06:25 +0100423/**
Jonathan Camerond7f1c0c2021-03-14 16:46:54 +0000424 * sca3000_print_rev() - sysfs interface to read the chip revision number
Jonathan Cameron2ccf6142016-10-08 17:39:17 +0100425 * @indio_dev: Device instance specific generic IIO data.
426 * Driver specific device instance data can be obtained via
427 * via iio_priv(indio_dev)
428 */
Jonathan Cameron7ab9fa0052016-10-08 17:39:14 +0100429static int sca3000_print_rev(struct iio_dev *indio_dev)
Jonathan Cameron574fb252009-08-18 18:06:25 +0100430{
Jonathan Cameron7ab9fa0052016-10-08 17:39:14 +0100431 int ret;
Jonathan Cameron2579a0d2011-10-06 17:14:36 +0100432 struct sca3000_state *st = iio_priv(indio_dev);
Jonathan Cameron574fb252009-08-18 18:06:25 +0100433
Jonathan Cameron574fb252009-08-18 18:06:25 +0100434 mutex_lock(&st->lock);
Jonathan Cameron9bc11d32016-10-08 17:39:09 +0100435 ret = sca3000_read_data_short(st, SCA3000_REG_REVID_ADDR, 1);
Jonathan Cameron574fb252009-08-18 18:06:25 +0100436 if (ret < 0)
437 goto error_ret;
Jonathan Cameron7ab9fa0052016-10-08 17:39:14 +0100438 dev_info(&indio_dev->dev,
439 "sca3000 revision major=%lu, minor=%lu\n",
440 st->rx[0] & SCA3000_REG_REVID_MAJOR_MASK,
441 st->rx[0] & SCA3000_REG_REVID_MINOR_MASK);
Jonathan Cameron574fb252009-08-18 18:06:25 +0100442error_ret:
443 mutex_unlock(&st->lock);
444
Jonathan Cameron7ab9fa0052016-10-08 17:39:14 +0100445 return ret;
Jonathan Cameron574fb252009-08-18 18:06:25 +0100446}
447
Jonathan Cameron626f9712016-10-08 17:39:12 +0100448static ssize_t
449sca3000_show_available_3db_freqs(struct device *dev,
450 struct device_attribute *attr,
451 char *buf)
452{
453 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
454 struct sca3000_state *st = iio_priv(indio_dev);
455 int len;
456
457 len = sprintf(buf, "%d", st->info->measurement_mode_3db_freq);
458 if (st->info->option_mode_1)
459 len += sprintf(buf + len, " %d",
460 st->info->option_mode_1_3db_freq);
461 if (st->info->option_mode_2)
462 len += sprintf(buf + len, " %d",
463 st->info->option_mode_2_3db_freq);
464 len += sprintf(buf + len, "\n");
465
466 return len;
467}
Jonathan Cameron574fb252009-08-18 18:06:25 +0100468
Jonathan Cameron626f9712016-10-08 17:39:12 +0100469static IIO_DEVICE_ATTR(in_accel_filter_low_pass_3db_frequency_available,
470 S_IRUGO, sca3000_show_available_3db_freqs,
471 NULL, 0);
Jonathan Cameron574fb252009-08-18 18:06:25 +0100472
Lars-Peter Clausen129c3f62013-10-07 15:11:00 +0100473static const struct iio_event_spec sca3000_event = {
474 .type = IIO_EV_TYPE_MAG,
475 .dir = IIO_EV_DIR_RISING,
476 .mask_separate = BIT(IIO_EV_INFO_VALUE) | BIT(IIO_EV_INFO_ENABLE),
477};
Jonathan Cameron574fb252009-08-18 18:06:25 +0100478
Jonathan Cameron152a6a82016-10-08 17:39:06 +0100479/*
480 * Note the hack in the number of bits to pretend we have 2 more than
481 * we do in the fifo.
482 */
Jonathan Cameron691a4ca2012-04-13 10:42:53 +0100483#define SCA3000_CHAN(index, mod) \
484 { \
485 .type = IIO_ACCEL, \
486 .modified = 1, \
487 .channel2 = mod, \
Jonathan Camerona8b21c52013-02-27 19:36:45 +0000488 .info_mask_separate = BIT(IIO_CHAN_INFO_RAW), \
Jonathan Cameron085fe1b2016-10-08 17:39:10 +0100489 .info_mask_shared_by_type = BIT(IIO_CHAN_INFO_SCALE) |\
490 BIT(IIO_CHAN_INFO_LOW_PASS_FILTER_3DB_FREQUENCY),\
Ico Doornekampe0f3fc92016-09-13 21:14:14 +0200491 .info_mask_shared_by_all = BIT(IIO_CHAN_INFO_SAMP_FREQ),\
Jonathan Cameron691a4ca2012-04-13 10:42:53 +0100492 .address = index, \
493 .scan_index = index, \
494 .scan_type = { \
495 .sign = 's', \
Jonathan Cameron152a6a82016-10-08 17:39:06 +0100496 .realbits = 13, \
Jonathan Cameron691a4ca2012-04-13 10:42:53 +0100497 .storagebits = 16, \
Jonathan Cameron152a6a82016-10-08 17:39:06 +0100498 .shift = 3, \
499 .endianness = IIO_BE, \
Jonathan Cameron691a4ca2012-04-13 10:42:53 +0100500 }, \
Lars-Peter Clausen129c3f62013-10-07 15:11:00 +0100501 .event_spec = &sca3000_event, \
502 .num_event_specs = 1, \
Clifton Barnesa5211b02016-08-22 22:45:05 -0400503 }
Jonathan Cameron691a4ca2012-04-13 10:42:53 +0100504
Jonathan Cameron45ae5562016-10-08 17:39:08 +0100505static const struct iio_event_spec sca3000_freefall_event_spec = {
506 .type = IIO_EV_TYPE_MAG,
507 .dir = IIO_EV_DIR_FALLING,
508 .mask_separate = BIT(IIO_EV_INFO_ENABLE) |
509 BIT(IIO_EV_INFO_PERIOD),
510};
511
Lars-Peter Clausenf4e4b952012-08-09 08:51:00 +0100512static const struct iio_chan_spec sca3000_channels[] = {
Jonathan Cameron691a4ca2012-04-13 10:42:53 +0100513 SCA3000_CHAN(0, IIO_MOD_X),
514 SCA3000_CHAN(1, IIO_MOD_Y),
515 SCA3000_CHAN(2, IIO_MOD_Z),
Jonathan Cameron45ae5562016-10-08 17:39:08 +0100516 {
517 .type = IIO_ACCEL,
518 .modified = 1,
519 .channel2 = IIO_MOD_X_AND_Y_AND_Z,
520 .scan_index = -1, /* Fake channel */
521 .event_spec = &sca3000_freefall_event_spec,
522 .num_event_specs = 1,
523 },
Jonathan Cameron25888dc2011-05-18 14:41:01 +0100524};
525
Peter Meerwaldbb0090e2014-01-13 21:28:00 +0000526static const struct iio_chan_spec sca3000_channels_with_temp[] = {
527 SCA3000_CHAN(0, IIO_MOD_X),
528 SCA3000_CHAN(1, IIO_MOD_Y),
529 SCA3000_CHAN(2, IIO_MOD_Z),
530 {
531 .type = IIO_TEMP,
532 .info_mask_separate = BIT(IIO_CHAN_INFO_RAW),
533 .info_mask_shared_by_type = BIT(IIO_CHAN_INFO_SCALE) |
534 BIT(IIO_CHAN_INFO_OFFSET),
Lars-Peter Clausen131e97d2014-11-26 18:55:10 +0100535 /* No buffer support */
536 .scan_index = -1,
Gwendal Grignou5405c9b2021-11-04 01:24:04 -0700537 .scan_type = {
538 .sign = 'u',
539 .realbits = 9,
540 .storagebits = 16,
541 .shift = 5,
542 .endianness = IIO_BE,
543 },
Peter Meerwaldbb0090e2014-01-13 21:28:00 +0000544 },
Jonathan Cameron45ae5562016-10-08 17:39:08 +0100545 {
546 .type = IIO_ACCEL,
547 .modified = 1,
548 .channel2 = IIO_MOD_X_AND_Y_AND_Z,
549 .scan_index = -1, /* Fake channel */
550 .event_spec = &sca3000_freefall_event_spec,
551 .num_event_specs = 1,
552 },
Peter Meerwaldbb0090e2014-01-13 21:28:00 +0000553};
554
Jonathan Cameron25888dc2011-05-18 14:41:01 +0100555static u8 sca3000_addresses[3][3] = {
Jonathan Cameron9bc11d32016-10-08 17:39:09 +0100556 [0] = {SCA3000_REG_X_MSB_ADDR, SCA3000_REG_CTRL_SEL_MD_X_TH,
Jonathan Cameron25888dc2011-05-18 14:41:01 +0100557 SCA3000_MD_CTRL_OR_X},
Jonathan Cameron9bc11d32016-10-08 17:39:09 +0100558 [1] = {SCA3000_REG_Y_MSB_ADDR, SCA3000_REG_CTRL_SEL_MD_Y_TH,
Jonathan Cameron25888dc2011-05-18 14:41:01 +0100559 SCA3000_MD_CTRL_OR_Y},
Jonathan Cameron9bc11d32016-10-08 17:39:09 +0100560 [2] = {SCA3000_REG_Z_MSB_ADDR, SCA3000_REG_CTRL_SEL_MD_Z_TH,
Jonathan Cameron25888dc2011-05-18 14:41:01 +0100561 SCA3000_MD_CTRL_OR_Z},
562};
563
Ico Doornekampe0f3fc92016-09-13 21:14:14 +0200564/**
Jonathan Cameron2ccf6142016-10-08 17:39:17 +0100565 * __sca3000_get_base_freq() - obtain mode specific base frequency
566 * @st: Private driver specific device instance specific state.
567 * @info: chip type specific information.
568 * @base_freq: Base frequency for the current measurement mode.
Ico Doornekampe0f3fc92016-09-13 21:14:14 +0200569 *
570 * lock must be held
Jonathan Cameron2ccf6142016-10-08 17:39:17 +0100571 */
Ico Doornekampe0f3fc92016-09-13 21:14:14 +0200572static inline int __sca3000_get_base_freq(struct sca3000_state *st,
573 const struct sca3000_chip_info *info,
574 int *base_freq)
575{
576 int ret;
577
Jonathan Cameron9bc11d32016-10-08 17:39:09 +0100578 ret = sca3000_read_data_short(st, SCA3000_REG_MODE_ADDR, 1);
Ico Doornekampe0f3fc92016-09-13 21:14:14 +0200579 if (ret)
580 goto error_ret;
Jonathan Cameron9bc11d32016-10-08 17:39:09 +0100581 switch (SCA3000_REG_MODE_MODE_MASK & st->rx[0]) {
582 case SCA3000_REG_MODE_MEAS_MODE_NORMAL:
Ico Doornekampe0f3fc92016-09-13 21:14:14 +0200583 *base_freq = info->measurement_mode_freq;
584 break;
Jonathan Cameron9bc11d32016-10-08 17:39:09 +0100585 case SCA3000_REG_MODE_MEAS_MODE_OP_1:
Ico Doornekampe0f3fc92016-09-13 21:14:14 +0200586 *base_freq = info->option_mode_1_freq;
587 break;
Jonathan Cameron9bc11d32016-10-08 17:39:09 +0100588 case SCA3000_REG_MODE_MEAS_MODE_OP_2:
Ico Doornekampe0f3fc92016-09-13 21:14:14 +0200589 *base_freq = info->option_mode_2_freq;
590 break;
Arnd Bergmanna1427af2016-09-22 11:43:42 +0200591 default:
592 ret = -EINVAL;
Ico Doornekampe0f3fc92016-09-13 21:14:14 +0200593 }
594error_ret:
595 return ret;
596}
597
598/**
Jonathan Cameron2ccf6142016-10-08 17:39:17 +0100599 * sca3000_read_raw_samp_freq() - read_raw handler for IIO_CHAN_INFO_SAMP_FREQ
600 * @st: Private driver specific device instance specific state.
601 * @val: The frequency read back.
Ico Doornekampe0f3fc92016-09-13 21:14:14 +0200602 *
603 * lock must be held
604 **/
Jonathan Cameron2ccf6142016-10-08 17:39:17 +0100605static int sca3000_read_raw_samp_freq(struct sca3000_state *st, int *val)
Ico Doornekampe0f3fc92016-09-13 21:14:14 +0200606{
607 int ret;
608
609 ret = __sca3000_get_base_freq(st, st->info, val);
610 if (ret)
611 return ret;
612
613 ret = sca3000_read_ctrl_reg(st, SCA3000_REG_CTRL_SEL_OUT_CTRL);
614 if (ret < 0)
615 return ret;
616
617 if (*val > 0) {
Jonathan Cameron9bc11d32016-10-08 17:39:09 +0100618 ret &= SCA3000_REG_OUT_CTRL_BUF_DIV_MASK;
Ico Doornekampe0f3fc92016-09-13 21:14:14 +0200619 switch (ret) {
Jonathan Cameron9bc11d32016-10-08 17:39:09 +0100620 case SCA3000_REG_OUT_CTRL_BUF_DIV_2:
Ico Doornekampe0f3fc92016-09-13 21:14:14 +0200621 *val /= 2;
622 break;
Jonathan Cameron9bc11d32016-10-08 17:39:09 +0100623 case SCA3000_REG_OUT_CTRL_BUF_DIV_4:
Ico Doornekampe0f3fc92016-09-13 21:14:14 +0200624 *val /= 4;
625 break;
626 }
627 }
628
629 return 0;
630}
631
632/**
Jonathan Cameron2ccf6142016-10-08 17:39:17 +0100633 * sca3000_write_raw_samp_freq() - write_raw handler for IIO_CHAN_INFO_SAMP_FREQ
634 * @st: Private driver specific device instance specific state.
635 * @val: The frequency desired.
Ico Doornekampe0f3fc92016-09-13 21:14:14 +0200636 *
637 * lock must be held
Jonathan Cameron2ccf6142016-10-08 17:39:17 +0100638 */
639static int sca3000_write_raw_samp_freq(struct sca3000_state *st, int val)
Ico Doornekampe0f3fc92016-09-13 21:14:14 +0200640{
641 int ret, base_freq, ctrlval;
642
643 ret = __sca3000_get_base_freq(st, st->info, &base_freq);
644 if (ret)
645 return ret;
646
647 ret = sca3000_read_ctrl_reg(st, SCA3000_REG_CTRL_SEL_OUT_CTRL);
648 if (ret < 0)
649 return ret;
650
Jonathan Cameron9bc11d32016-10-08 17:39:09 +0100651 ctrlval = ret & ~SCA3000_REG_OUT_CTRL_BUF_DIV_MASK;
Ico Doornekampe0f3fc92016-09-13 21:14:14 +0200652
653 if (val == base_freq / 2)
Jonathan Cameron9bc11d32016-10-08 17:39:09 +0100654 ctrlval |= SCA3000_REG_OUT_CTRL_BUF_DIV_2;
Ico Doornekampe0f3fc92016-09-13 21:14:14 +0200655 if (val == base_freq / 4)
Jonathan Cameron9bc11d32016-10-08 17:39:09 +0100656 ctrlval |= SCA3000_REG_OUT_CTRL_BUF_DIV_4;
Ico Doornekampe0f3fc92016-09-13 21:14:14 +0200657 else if (val != base_freq)
658 return -EINVAL;
659
660 return sca3000_write_ctrl_reg(st, SCA3000_REG_CTRL_SEL_OUT_CTRL,
661 ctrlval);
662}
663
Jonathan Cameron085fe1b2016-10-08 17:39:10 +0100664static int sca3000_read_3db_freq(struct sca3000_state *st, int *val)
665{
666 int ret;
667
668 ret = sca3000_read_data_short(st, SCA3000_REG_MODE_ADDR, 1);
669 if (ret)
670 return ret;
671
672 /* mask bottom 2 bits - only ones that are relevant */
673 st->rx[0] &= SCA3000_REG_MODE_MODE_MASK;
674 switch (st->rx[0]) {
675 case SCA3000_REG_MODE_MEAS_MODE_NORMAL:
676 *val = st->info->measurement_mode_3db_freq;
677 return IIO_VAL_INT;
678 case SCA3000_REG_MODE_MEAS_MODE_MOT_DET:
679 return -EBUSY;
680 case SCA3000_REG_MODE_MEAS_MODE_OP_1:
681 *val = st->info->option_mode_1_3db_freq;
682 return IIO_VAL_INT;
683 case SCA3000_REG_MODE_MEAS_MODE_OP_2:
684 *val = st->info->option_mode_2_3db_freq;
685 return IIO_VAL_INT;
686 default:
687 return -EINVAL;
688 }
689}
690
Jonathan Cameron626f9712016-10-08 17:39:12 +0100691static int sca3000_write_3db_freq(struct sca3000_state *st, int val)
692{
693 int ret;
694 int mode;
695
696 if (val == st->info->measurement_mode_3db_freq)
697 mode = SCA3000_REG_MODE_MEAS_MODE_NORMAL;
698 else if (st->info->option_mode_1 &&
699 (val == st->info->option_mode_1_3db_freq))
700 mode = SCA3000_REG_MODE_MEAS_MODE_OP_1;
701 else if (st->info->option_mode_2 &&
702 (val == st->info->option_mode_2_3db_freq))
703 mode = SCA3000_REG_MODE_MEAS_MODE_OP_2;
704 else
705 return -EINVAL;
706 ret = sca3000_read_data_short(st, SCA3000_REG_MODE_ADDR, 1);
707 if (ret)
708 return ret;
709
710 st->rx[0] &= ~SCA3000_REG_MODE_MODE_MASK;
711 st->rx[0] |= (mode & SCA3000_REG_MODE_MODE_MASK);
712
713 return sca3000_write_reg(st, SCA3000_REG_MODE_ADDR, st->rx[0]);
714}
715
Jonathan Cameron25888dc2011-05-18 14:41:01 +0100716static int sca3000_read_raw(struct iio_dev *indio_dev,
717 struct iio_chan_spec const *chan,
718 int *val,
719 int *val2,
720 long mask)
721{
Jonathan Cameron83f04222011-06-27 13:07:16 +0100722 struct sca3000_state *st = iio_priv(indio_dev);
Jonathan Cameron25888dc2011-05-18 14:41:01 +0100723 int ret;
724 u8 address;
725
726 switch (mask) {
Jonathan Cameron31313fc2012-04-15 17:41:17 +0100727 case IIO_CHAN_INFO_RAW:
Jonathan Cameron25888dc2011-05-18 14:41:01 +0100728 mutex_lock(&st->lock);
Peter Meerwaldbb0090e2014-01-13 21:28:00 +0000729 if (chan->type == IIO_ACCEL) {
730 if (st->mo_det_use_count) {
731 mutex_unlock(&st->lock);
732 return -EBUSY;
733 }
734 address = sca3000_addresses[chan->address][0];
735 ret = sca3000_read_data_short(st, address, 2);
736 if (ret < 0) {
737 mutex_unlock(&st->lock);
738 return ret;
739 }
Gwendal Grignou5405c9b2021-11-04 01:24:04 -0700740 *val = sign_extend32(be16_to_cpup((__be16 *)st->rx) >>
741 chan->scan_type.shift,
742 chan->scan_type.realbits - 1);
Peter Meerwaldbb0090e2014-01-13 21:28:00 +0000743 } else {
744 /* get the temperature when available */
745 ret = sca3000_read_data_short(st,
Jonathan Cameron9bc11d32016-10-08 17:39:09 +0100746 SCA3000_REG_TEMP_MSB_ADDR,
Ioana Ciornei252b1d82015-10-29 01:01:49 +0200747 2);
Peter Meerwaldbb0090e2014-01-13 21:28:00 +0000748 if (ret < 0) {
749 mutex_unlock(&st->lock);
750 return ret;
751 }
Gwendal Grignou5405c9b2021-11-04 01:24:04 -0700752 *val = (be16_to_cpup((__be16 *)st->rx) >>
753 chan->scan_type.shift) &
754 GENMASK(chan->scan_type.realbits - 1, 0);
Jonathan Cameron25888dc2011-05-18 14:41:01 +0100755 }
Jonathan Cameron25888dc2011-05-18 14:41:01 +0100756 mutex_unlock(&st->lock);
757 return IIO_VAL_INT;
Jonathan Cameronc8a9f802011-10-26 17:41:36 +0100758 case IIO_CHAN_INFO_SCALE:
Jonathan Cameron25888dc2011-05-18 14:41:01 +0100759 *val = 0;
760 if (chan->type == IIO_ACCEL)
761 *val2 = st->info->scale;
762 else /* temperature */
763 *val2 = 555556;
764 return IIO_VAL_INT_PLUS_MICRO;
Peter Meerwaldbb0090e2014-01-13 21:28:00 +0000765 case IIO_CHAN_INFO_OFFSET:
766 *val = -214;
767 *val2 = 600000;
768 return IIO_VAL_INT_PLUS_MICRO;
Ico Doornekampe0f3fc92016-09-13 21:14:14 +0200769 case IIO_CHAN_INFO_SAMP_FREQ:
770 mutex_lock(&st->lock);
Jonathan Cameron2ccf6142016-10-08 17:39:17 +0100771 ret = sca3000_read_raw_samp_freq(st, val);
Ico Doornekampe0f3fc92016-09-13 21:14:14 +0200772 mutex_unlock(&st->lock);
773 return ret ? ret : IIO_VAL_INT;
Jonathan Cameron085fe1b2016-10-08 17:39:10 +0100774 case IIO_CHAN_INFO_LOW_PASS_FILTER_3DB_FREQUENCY:
775 mutex_lock(&st->lock);
776 ret = sca3000_read_3db_freq(st, val);
777 mutex_unlock(&st->lock);
778 return ret;
Jonathan Cameron25888dc2011-05-18 14:41:01 +0100779 default:
780 return -EINVAL;
781 }
782}
Jonathan Cameron574fb252009-08-18 18:06:25 +0100783
Ico Doornekampe0f3fc92016-09-13 21:14:14 +0200784static int sca3000_write_raw(struct iio_dev *indio_dev,
785 struct iio_chan_spec const *chan,
786 int val, int val2, long mask)
787{
788 struct sca3000_state *st = iio_priv(indio_dev);
789 int ret;
790
791 switch (mask) {
792 case IIO_CHAN_INFO_SAMP_FREQ:
793 if (val2)
794 return -EINVAL;
795 mutex_lock(&st->lock);
Jonathan Cameron2ccf6142016-10-08 17:39:17 +0100796 ret = sca3000_write_raw_samp_freq(st, val);
Ico Doornekampe0f3fc92016-09-13 21:14:14 +0200797 mutex_unlock(&st->lock);
798 return ret;
Jonathan Cameron626f9712016-10-08 17:39:12 +0100799 case IIO_CHAN_INFO_LOW_PASS_FILTER_3DB_FREQUENCY:
800 if (val2)
801 return -EINVAL;
802 mutex_lock(&st->lock);
803 ret = sca3000_write_3db_freq(st, val);
804 mutex_unlock(&st->lock);
Gustavo A. R. Silvac5b974b2018-07-07 12:44:01 -0500805 return ret;
Ico Doornekampe0f3fc92016-09-13 21:14:14 +0200806 default:
807 return -EINVAL;
808 }
809
810 return ret;
811}
812
Jonathan Cameron574fb252009-08-18 18:06:25 +0100813/**
Jonathan Cameron2ccf6142016-10-08 17:39:17 +0100814 * sca3000_read_av_freq() - sysfs function to get available frequencies
815 * @dev: Device structure for this device.
816 * @attr: Description of the attribute.
817 * @buf: Incoming string
Jonathan Cameron574fb252009-08-18 18:06:25 +0100818 *
819 * The later modes are only relevant to the ring buffer - and depend on current
820 * mode. Note that data sheet gives rather wide tolerances for these so integer
821 * division will give good enough answer and not all chips have them specified
822 * at all.
823 **/
824static ssize_t sca3000_read_av_freq(struct device *dev,
Ioana Ciornei252b1d82015-10-29 01:01:49 +0200825 struct device_attribute *attr,
826 char *buf)
Jonathan Cameron574fb252009-08-18 18:06:25 +0100827{
Lars-Peter Clausen4b522ce2012-05-12 15:39:43 +0200828 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Jonathan Cameron83f04222011-06-27 13:07:16 +0100829 struct sca3000_state *st = iio_priv(indio_dev);
Jonathan Cameron25888dc2011-05-18 14:41:01 +0100830 int len = 0, ret, val;
831
Jonathan Cameron574fb252009-08-18 18:06:25 +0100832 mutex_lock(&st->lock);
Jonathan Cameron9bc11d32016-10-08 17:39:09 +0100833 ret = sca3000_read_data_short(st, SCA3000_REG_MODE_ADDR, 1);
Jonathan Cameron25888dc2011-05-18 14:41:01 +0100834 val = st->rx[0];
Jonathan Cameron574fb252009-08-18 18:06:25 +0100835 mutex_unlock(&st->lock);
836 if (ret)
837 goto error_ret;
Jonathan Cameron25888dc2011-05-18 14:41:01 +0100838
Jonathan Cameron9bc11d32016-10-08 17:39:09 +0100839 switch (val & SCA3000_REG_MODE_MODE_MASK) {
840 case SCA3000_REG_MODE_MEAS_MODE_NORMAL:
Jonathan Cameron574fb252009-08-18 18:06:25 +0100841 len += sprintf(buf + len, "%d %d %d\n",
842 st->info->measurement_mode_freq,
Ioana Ciornei1abe0c92015-10-29 01:01:48 +0200843 st->info->measurement_mode_freq / 2,
844 st->info->measurement_mode_freq / 4);
Jonathan Cameron574fb252009-08-18 18:06:25 +0100845 break;
Jonathan Cameron9bc11d32016-10-08 17:39:09 +0100846 case SCA3000_REG_MODE_MEAS_MODE_OP_1:
Jonathan Cameron574fb252009-08-18 18:06:25 +0100847 len += sprintf(buf + len, "%d %d %d\n",
848 st->info->option_mode_1_freq,
Ioana Ciornei1abe0c92015-10-29 01:01:48 +0200849 st->info->option_mode_1_freq / 2,
850 st->info->option_mode_1_freq / 4);
Jonathan Cameron574fb252009-08-18 18:06:25 +0100851 break;
Jonathan Cameron9bc11d32016-10-08 17:39:09 +0100852 case SCA3000_REG_MODE_MEAS_MODE_OP_2:
Jonathan Cameron574fb252009-08-18 18:06:25 +0100853 len += sprintf(buf + len, "%d %d %d\n",
854 st->info->option_mode_2_freq,
Ioana Ciornei1abe0c92015-10-29 01:01:48 +0200855 st->info->option_mode_2_freq / 2,
856 st->info->option_mode_2_freq / 4);
Jonathan Cameron574fb252009-08-18 18:06:25 +0100857 break;
Mike Frysingerc608cb02010-05-23 03:10:30 -0400858 }
Jonathan Cameron574fb252009-08-18 18:06:25 +0100859 return len;
860error_ret:
861 return ret;
862}
Ioana Ciornei4a613ad2015-10-29 01:01:51 +0200863
Peter Meerwald5262d8f2014-01-13 21:28:00 +0000864/*
865 * Should only really be registered if ring buffer support is compiled in.
Jonathan Cameron574fb252009-08-18 18:06:25 +0100866 * Does no harm however and doing it right would add a fair bit of complexity
867 */
Jonathan Cameronf3fb0012010-05-04 14:42:58 +0100868static IIO_DEV_ATTR_SAMP_FREQ_AVAIL(sca3000_read_av_freq);
Jonathan Cameron574fb252009-08-18 18:06:25 +0100869
Lee Jonesfb37b5f2020-07-17 17:55:24 +0100870/*
Jonathan Cameron45ae5562016-10-08 17:39:08 +0100871 * sca3000_read_event_value() - query of a threshold or period
Lee Jonesfb37b5f2020-07-17 17:55:24 +0100872 */
Jonathan Cameron45ae5562016-10-08 17:39:08 +0100873static int sca3000_read_event_value(struct iio_dev *indio_dev,
874 const struct iio_chan_spec *chan,
875 enum iio_event_type type,
876 enum iio_event_direction dir,
877 enum iio_event_info info,
878 int *val, int *val2)
Jonathan Cameron574fb252009-08-18 18:06:25 +0100879{
Jonathan Cameron83f04222011-06-27 13:07:16 +0100880 struct sca3000_state *st = iio_priv(indio_dev);
Dan Carpenteraabcbfe2019-06-21 12:18:28 +0300881 long ret;
882 int i;
Jonathan Cameron74bdc942016-10-08 17:39:11 +0100883
Jonathan Cameron45ae5562016-10-08 17:39:08 +0100884 switch (info) {
885 case IIO_EV_INFO_VALUE:
886 mutex_lock(&st->lock);
Jonathan Cameron74bdc942016-10-08 17:39:11 +0100887 ret = sca3000_read_ctrl_reg(st,
888 sca3000_addresses[chan->address][1]);
Jonathan Cameron45ae5562016-10-08 17:39:08 +0100889 mutex_unlock(&st->lock);
890 if (ret < 0)
891 return ret;
892 *val = 0;
Jonathan Cameron74bdc942016-10-08 17:39:11 +0100893 if (chan->channel2 == IIO_MOD_Y)
Dan Carpenteraabcbfe2019-06-21 12:18:28 +0300894 for_each_set_bit(i, &ret,
Jonathan Cameron45ae5562016-10-08 17:39:08 +0100895 ARRAY_SIZE(st->info->mot_det_mult_y))
896 *val += st->info->mot_det_mult_y[i];
897 else
Dan Carpenteraabcbfe2019-06-21 12:18:28 +0300898 for_each_set_bit(i, &ret,
Jonathan Cameron45ae5562016-10-08 17:39:08 +0100899 ARRAY_SIZE(st->info->mot_det_mult_xz))
900 *val += st->info->mot_det_mult_xz[i];
Murilo Opsfelder Araujod7b79512014-07-08 01:22:00 +0100901
Jonathan Cameron45ae5562016-10-08 17:39:08 +0100902 return IIO_VAL_INT;
903 case IIO_EV_INFO_PERIOD:
904 *val = 0;
905 *val2 = 226000;
906 return IIO_VAL_INT_PLUS_MICRO;
907 default:
908 return -EINVAL;
909 }
Jonathan Cameron574fb252009-08-18 18:06:25 +0100910}
911
912/**
Jonathan Camerond7f1c0c2021-03-14 16:46:54 +0000913 * sca3000_write_event_value() - control of threshold and period
Jonathan Cameron2ccf6142016-10-08 17:39:17 +0100914 * @indio_dev: Device instance specific IIO information.
915 * @chan: Description of the channel for which the event is being
916 * configured.
917 * @type: The type of event being configured, here magnitude rising
918 * as everything else is read only.
919 * @dir: Direction of the event (here rising)
920 * @info: What information about the event are we configuring.
921 * Here the threshold only.
922 * @val: Integer part of the value being written..
923 * @val2: Non integer part of the value being written. Here always 0.
924 */
Jonathan Cameron45ae5562016-10-08 17:39:08 +0100925static int sca3000_write_event_value(struct iio_dev *indio_dev,
926 const struct iio_chan_spec *chan,
927 enum iio_event_type type,
928 enum iio_event_direction dir,
929 enum iio_event_info info,
930 int val, int val2)
Jonathan Cameron574fb252009-08-18 18:06:25 +0100931{
Jonathan Cameron83f04222011-06-27 13:07:16 +0100932 struct sca3000_state *st = iio_priv(indio_dev);
Jonathan Cameron574fb252009-08-18 18:06:25 +0100933 int ret;
Jonathan Cameron25888dc2011-05-18 14:41:01 +0100934 int i;
935 u8 nonlinear = 0;
Jonathan Cameron574fb252009-08-18 18:06:25 +0100936
Jonathan Cameron74bdc942016-10-08 17:39:11 +0100937 if (chan->channel2 == IIO_MOD_Y) {
Jonathan Cameron25888dc2011-05-18 14:41:01 +0100938 i = ARRAY_SIZE(st->info->mot_det_mult_y);
939 while (i > 0)
940 if (val >= st->info->mot_det_mult_y[--i]) {
941 nonlinear |= (1 << i);
942 val -= st->info->mot_det_mult_y[i];
943 }
944 } else {
945 i = ARRAY_SIZE(st->info->mot_det_mult_xz);
946 while (i > 0)
947 if (val >= st->info->mot_det_mult_xz[--i]) {
948 nonlinear |= (1 << i);
949 val -= st->info->mot_det_mult_xz[i];
950 }
951 }
952
Jonathan Cameron574fb252009-08-18 18:06:25 +0100953 mutex_lock(&st->lock);
Jonathan Cameron74bdc942016-10-08 17:39:11 +0100954 ret = sca3000_write_ctrl_reg(st,
955 sca3000_addresses[chan->address][1],
956 nonlinear);
Jonathan Cameron574fb252009-08-18 18:06:25 +0100957 mutex_unlock(&st->lock);
958
Jonathan Cameron25888dc2011-05-18 14:41:01 +0100959 return ret;
Jonathan Cameron574fb252009-08-18 18:06:25 +0100960}
961
Jonathan Cameron574fb252009-08-18 18:06:25 +0100962static struct attribute *sca3000_attributes[] = {
Jonathan Cameron626f9712016-10-08 17:39:12 +0100963 &iio_dev_attr_in_accel_filter_low_pass_3db_frequency_available.dev_attr.attr,
Jonathan Cameronf3fb0012010-05-04 14:42:58 +0100964 &iio_dev_attr_sampling_frequency_available.dev_attr.attr,
Jonathan Cameron574fb252009-08-18 18:06:25 +0100965 NULL,
966};
967
Jonathan Cameron574fb252009-08-18 18:06:25 +0100968static const struct attribute_group sca3000_attribute_group = {
969 .attrs = sca3000_attributes,
970};
971
Jonathan Cameron152a6a82016-10-08 17:39:06 +0100972static int sca3000_read_data(struct sca3000_state *st,
973 u8 reg_address_high,
974 u8 *rx,
975 int len)
976{
977 int ret;
978 struct spi_transfer xfer[2] = {
979 {
980 .len = 1,
981 .tx_buf = st->tx,
982 }, {
983 .len = len,
984 .rx_buf = rx,
985 }
986 };
987
988 st->tx[0] = SCA3000_READ_REG(reg_address_high);
989 ret = spi_sync_transfer(st->us, xfer, ARRAY_SIZE(xfer));
990 if (ret) {
Christophe JAILLET928edef2020-05-06 05:52:06 +0200991 dev_err(&st->us->dev, "problem reading register\n");
Jonathan Cameron152a6a82016-10-08 17:39:06 +0100992 return ret;
993 }
994
995 return 0;
996}
997
Jonathan Cameron574fb252009-08-18 18:06:25 +0100998/**
Jonathan Cameron2ccf6142016-10-08 17:39:17 +0100999 * sca3000_ring_int_process() - ring specific interrupt handling.
1000 * @val: Value of the interrupt status register.
1001 * @indio_dev: Device instance specific IIO device structure.
1002 */
Jonathan Cameron152a6a82016-10-08 17:39:06 +01001003static void sca3000_ring_int_process(u8 val, struct iio_dev *indio_dev)
Jonathan Cameronced5c032016-10-08 17:39:02 +01001004{
Jonathan Cameron152a6a82016-10-08 17:39:06 +01001005 struct sca3000_state *st = iio_priv(indio_dev);
1006 int ret, i, num_available;
1007
1008 mutex_lock(&st->lock);
Jonathan Cameron9bc11d32016-10-08 17:39:09 +01001009
1010 if (val & SCA3000_REG_INT_STATUS_HALF) {
1011 ret = sca3000_read_data_short(st, SCA3000_REG_BUF_COUNT_ADDR,
Jonathan Cameron152a6a82016-10-08 17:39:06 +01001012 1);
1013 if (ret)
1014 goto error_ret;
1015 num_available = st->rx[0];
1016 /*
1017 * num_available is the total number of samples available
1018 * i.e. number of time points * number of channels.
1019 */
Jonathan Cameron9bc11d32016-10-08 17:39:09 +01001020 ret = sca3000_read_data(st, SCA3000_REG_RING_OUT_ADDR, st->rx,
Jonathan Cameron152a6a82016-10-08 17:39:06 +01001021 num_available * 2);
1022 if (ret)
1023 goto error_ret;
1024 for (i = 0; i < num_available / 3; i++) {
1025 /*
1026 * Dirty hack to cover for 11 bit in fifo, 13 bit
1027 * direct reading.
1028 *
1029 * In theory the bottom two bits are undefined.
1030 * In reality they appear to always be 0.
1031 */
1032 iio_push_to_buffers(indio_dev, st->rx + i * 3 * 2);
1033 }
Jonathan Cameronced5c032016-10-08 17:39:02 +01001034 }
Jonathan Cameron152a6a82016-10-08 17:39:06 +01001035error_ret:
1036 mutex_unlock(&st->lock);
Jonathan Cameronced5c032016-10-08 17:39:02 +01001037}
1038
1039/**
Jonathan Cameron25888dc2011-05-18 14:41:01 +01001040 * sca3000_event_handler() - handling ring and non ring events
Jonathan Cameron2ccf6142016-10-08 17:39:17 +01001041 * @irq: The irq being handled.
1042 * @private: struct iio_device pointer for the device.
Jonathan Cameron574fb252009-08-18 18:06:25 +01001043 *
Peter Meerwald5262d8f2014-01-13 21:28:00 +00001044 * Ring related interrupt handler. Depending on event, push to
1045 * the ring buffer event chrdev or the event one.
1046 *
Jonathan Cameron574fb252009-08-18 18:06:25 +01001047 * This function is complicated by the fact that the devices can signify ring
1048 * and non ring events via the same interrupt line and they can only
1049 * be distinguished via a read of the relevant status register.
Jonathan Cameron2ccf6142016-10-08 17:39:17 +01001050 */
Jonathan Cameron25888dc2011-05-18 14:41:01 +01001051static irqreturn_t sca3000_event_handler(int irq, void *private)
Jonathan Cameron574fb252009-08-18 18:06:25 +01001052{
Jonathan Cameron25888dc2011-05-18 14:41:01 +01001053 struct iio_dev *indio_dev = private;
Jonathan Cameron83f04222011-06-27 13:07:16 +01001054 struct sca3000_state *st = iio_priv(indio_dev);
Jonathan Cameron25888dc2011-05-18 14:41:01 +01001055 int ret, val;
Gregor Boiriebc2b7da2016-03-09 19:05:49 +01001056 s64 last_timestamp = iio_get_time_ns(indio_dev);
Jonathan Cameron574fb252009-08-18 18:06:25 +01001057
Peter Meerwald5262d8f2014-01-13 21:28:00 +00001058 /*
1059 * Could lead if badly timed to an extra read of status reg,
Jonathan Cameron574fb252009-08-18 18:06:25 +01001060 * but ensures no interrupt is missed.
1061 */
Jonathan Cameron574fb252009-08-18 18:06:25 +01001062 mutex_lock(&st->lock);
Jonathan Cameron9bc11d32016-10-08 17:39:09 +01001063 ret = sca3000_read_data_short(st, SCA3000_REG_INT_STATUS_ADDR, 1);
Jonathan Cameron25888dc2011-05-18 14:41:01 +01001064 val = st->rx[0];
Jonathan Cameron574fb252009-08-18 18:06:25 +01001065 mutex_unlock(&st->lock);
1066 if (ret)
1067 goto done;
1068
Jonathan Cameron152a6a82016-10-08 17:39:06 +01001069 sca3000_ring_int_process(val, indio_dev);
Jonathan Cameron574fb252009-08-18 18:06:25 +01001070
Jonathan Cameron25888dc2011-05-18 14:41:01 +01001071 if (val & SCA3000_INT_STATUS_FREE_FALL)
Jonathan Cameron5aa96182011-08-30 12:41:06 +01001072 iio_push_event(indio_dev,
Jonathan Cameronc4b14d92011-08-12 17:56:04 +01001073 IIO_MOD_EVENT_CODE(IIO_ACCEL,
Jonathan Cameronde9fe322010-10-08 12:14:03 +01001074 0,
Jonathan Cameronc4b14d92011-08-12 17:56:04 +01001075 IIO_MOD_X_AND_Y_AND_Z,
Jonathan Cameronde9fe322010-10-08 12:14:03 +01001076 IIO_EV_TYPE_MAG,
1077 IIO_EV_DIR_FALLING),
Jonathan Cameron25888dc2011-05-18 14:41:01 +01001078 last_timestamp);
Jonathan Cameron574fb252009-08-18 18:06:25 +01001079
Jonathan Cameron25888dc2011-05-18 14:41:01 +01001080 if (val & SCA3000_INT_STATUS_Y_TRIGGER)
Jonathan Cameron5aa96182011-08-30 12:41:06 +01001081 iio_push_event(indio_dev,
Jonathan Cameronc4b14d92011-08-12 17:56:04 +01001082 IIO_MOD_EVENT_CODE(IIO_ACCEL,
Jonathan Cameronde9fe322010-10-08 12:14:03 +01001083 0,
Jonathan Cameronc4b14d92011-08-12 17:56:04 +01001084 IIO_MOD_Y,
Jonathan Cameronde9fe322010-10-08 12:14:03 +01001085 IIO_EV_TYPE_MAG,
1086 IIO_EV_DIR_RISING),
Jonathan Cameron25888dc2011-05-18 14:41:01 +01001087 last_timestamp);
Jonathan Cameron574fb252009-08-18 18:06:25 +01001088
Jonathan Cameron25888dc2011-05-18 14:41:01 +01001089 if (val & SCA3000_INT_STATUS_X_TRIGGER)
Jonathan Cameron5aa96182011-08-30 12:41:06 +01001090 iio_push_event(indio_dev,
Jonathan Cameronc4b14d92011-08-12 17:56:04 +01001091 IIO_MOD_EVENT_CODE(IIO_ACCEL,
Jonathan Cameronde9fe322010-10-08 12:14:03 +01001092 0,
Jonathan Cameronc4b14d92011-08-12 17:56:04 +01001093 IIO_MOD_X,
Jonathan Cameronde9fe322010-10-08 12:14:03 +01001094 IIO_EV_TYPE_MAG,
1095 IIO_EV_DIR_RISING),
Jonathan Cameron25888dc2011-05-18 14:41:01 +01001096 last_timestamp);
Jonathan Cameron574fb252009-08-18 18:06:25 +01001097
Jonathan Cameron25888dc2011-05-18 14:41:01 +01001098 if (val & SCA3000_INT_STATUS_Z_TRIGGER)
Jonathan Cameron5aa96182011-08-30 12:41:06 +01001099 iio_push_event(indio_dev,
Jonathan Cameronc4b14d92011-08-12 17:56:04 +01001100 IIO_MOD_EVENT_CODE(IIO_ACCEL,
Jonathan Cameronde9fe322010-10-08 12:14:03 +01001101 0,
Jonathan Cameronc4b14d92011-08-12 17:56:04 +01001102 IIO_MOD_Z,
Jonathan Cameronde9fe322010-10-08 12:14:03 +01001103 IIO_EV_TYPE_MAG,
1104 IIO_EV_DIR_RISING),
Jonathan Cameron25888dc2011-05-18 14:41:01 +01001105 last_timestamp);
Jonathan Cameron574fb252009-08-18 18:06:25 +01001106
1107done:
Jonathan Cameron25888dc2011-05-18 14:41:01 +01001108 return IRQ_HANDLED;
Jonathan Cameron574fb252009-08-18 18:06:25 +01001109}
1110
Lee Jonesfb37b5f2020-07-17 17:55:24 +01001111/*
Jonathan Cameron25888dc2011-05-18 14:41:01 +01001112 * sca3000_read_event_config() what events are enabled
Lee Jonesfb37b5f2020-07-17 17:55:24 +01001113 */
Jonathan Cameron25888dc2011-05-18 14:41:01 +01001114static int sca3000_read_event_config(struct iio_dev *indio_dev,
Lars-Peter Clausen129c3f62013-10-07 15:11:00 +01001115 const struct iio_chan_spec *chan,
1116 enum iio_event_type type,
1117 enum iio_event_direction dir)
Jonathan Cameron574fb252009-08-18 18:06:25 +01001118{
Jonathan Cameron83f04222011-06-27 13:07:16 +01001119 struct sca3000_state *st = iio_priv(indio_dev);
Jonathan Cameron25888dc2011-05-18 14:41:01 +01001120 int ret;
Jonathan Cameron574fb252009-08-18 18:06:25 +01001121 /* read current value of mode register */
1122 mutex_lock(&st->lock);
Jonathan Cameron45ae5562016-10-08 17:39:08 +01001123
Jonathan Cameron9bc11d32016-10-08 17:39:09 +01001124 ret = sca3000_read_data_short(st, SCA3000_REG_MODE_ADDR, 1);
Jonathan Cameron574fb252009-08-18 18:06:25 +01001125 if (ret)
1126 goto error_ret;
1127
Jonathan Cameron45ae5562016-10-08 17:39:08 +01001128 switch (chan->channel2) {
1129 case IIO_MOD_X_AND_Y_AND_Z:
Jonathan Cameron9bc11d32016-10-08 17:39:09 +01001130 ret = !!(st->rx[0] & SCA3000_REG_MODE_FREE_FALL_DETECT);
Jonathan Cameron45ae5562016-10-08 17:39:08 +01001131 break;
1132 case IIO_MOD_X:
1133 case IIO_MOD_Y:
1134 case IIO_MOD_Z:
1135 /*
1136 * Motion detection mode cannot run at the same time as
1137 * acceleration data being read.
1138 */
Jonathan Cameron9bc11d32016-10-08 17:39:09 +01001139 if ((st->rx[0] & SCA3000_REG_MODE_MODE_MASK)
1140 != SCA3000_REG_MODE_MEAS_MODE_MOT_DET) {
Jonathan Cameron45ae5562016-10-08 17:39:08 +01001141 ret = 0;
1142 } else {
1143 ret = sca3000_read_ctrl_reg(st,
1144 SCA3000_REG_CTRL_SEL_MD_CTRL);
1145 if (ret < 0)
1146 goto error_ret;
1147 /* only supporting logical or's for now */
Jonathan Cameron74bdc942016-10-08 17:39:11 +01001148 ret = !!(ret & sca3000_addresses[chan->address][2]);
Jonathan Cameron45ae5562016-10-08 17:39:08 +01001149 }
1150 break;
1151 default:
1152 ret = -EINVAL;
Jonathan Cameron574fb252009-08-18 18:06:25 +01001153 }
Jonathan Cameron45ae5562016-10-08 17:39:08 +01001154
Jonathan Cameron574fb252009-08-18 18:06:25 +01001155error_ret:
1156 mutex_unlock(&st->lock);
1157
Jonathan Cameron25888dc2011-05-18 14:41:01 +01001158 return ret;
Jonathan Cameron574fb252009-08-18 18:06:25 +01001159}
Ioana Ciornei4a613ad2015-10-29 01:01:51 +02001160
Jonathan Cameron45ae5562016-10-08 17:39:08 +01001161static int sca3000_freefall_set_state(struct iio_dev *indio_dev, int state)
Jonathan Cameron574fb252009-08-18 18:06:25 +01001162{
Jonathan Cameron83f04222011-06-27 13:07:16 +01001163 struct sca3000_state *st = iio_priv(indio_dev);
Jonathan Cameron574fb252009-08-18 18:06:25 +01001164 int ret;
Jonathan Cameron574fb252009-08-18 18:06:25 +01001165
1166 /* read current value of mode register */
Jonathan Cameron9bc11d32016-10-08 17:39:09 +01001167 ret = sca3000_read_data_short(st, SCA3000_REG_MODE_ADDR, 1);
Jonathan Cameron574fb252009-08-18 18:06:25 +01001168 if (ret)
Jonathan Cameron45ae5562016-10-08 17:39:08 +01001169 return ret;
Jonathan Cameron574fb252009-08-18 18:06:25 +01001170
Peter Meerwald5262d8f2014-01-13 21:28:00 +00001171 /* if off and should be on */
Jonathan Cameron9bc11d32016-10-08 17:39:09 +01001172 if (state && !(st->rx[0] & SCA3000_REG_MODE_FREE_FALL_DETECT))
1173 return sca3000_write_reg(st, SCA3000_REG_MODE_ADDR,
1174 st->rx[0] | SCA3000_REG_MODE_FREE_FALL_DETECT);
Jonathan Cameron574fb252009-08-18 18:06:25 +01001175 /* if on and should be off */
Jonathan Cameron9bc11d32016-10-08 17:39:09 +01001176 else if (!state && (st->rx[0] & SCA3000_REG_MODE_FREE_FALL_DETECT))
1177 return sca3000_write_reg(st, SCA3000_REG_MODE_ADDR,
1178 st->rx[0] & ~SCA3000_REG_MODE_FREE_FALL_DETECT);
Jonathan Cameron45ae5562016-10-08 17:39:08 +01001179 else
1180 return 0;
1181}
Jonathan Cameron574fb252009-08-18 18:06:25 +01001182
Jonathan Cameron45ae5562016-10-08 17:39:08 +01001183static int sca3000_motion_detect_set_state(struct iio_dev *indio_dev, int axis,
1184 int state)
1185{
1186 struct sca3000_state *st = iio_priv(indio_dev);
1187 int ret, ctrlval;
1188
1189 /*
1190 * First read the motion detector config to find out if
1191 * this axis is on
1192 */
1193 ret = sca3000_read_ctrl_reg(st, SCA3000_REG_CTRL_SEL_MD_CTRL);
1194 if (ret < 0)
1195 return ret;
1196 ctrlval = ret;
1197 /* if off and should be on */
1198 if (state && !(ctrlval & sca3000_addresses[axis][2])) {
1199 ret = sca3000_write_ctrl_reg(st,
1200 SCA3000_REG_CTRL_SEL_MD_CTRL,
1201 ctrlval |
1202 sca3000_addresses[axis][2]);
1203 if (ret)
1204 return ret;
1205 st->mo_det_use_count++;
1206 } else if (!state && (ctrlval & sca3000_addresses[axis][2])) {
1207 ret = sca3000_write_ctrl_reg(st,
1208 SCA3000_REG_CTRL_SEL_MD_CTRL,
1209 ctrlval &
1210 ~(sca3000_addresses[axis][2]));
1211 if (ret)
1212 return ret;
1213 st->mo_det_use_count--;
1214 }
1215
1216 /* read current value of mode register */
Jonathan Cameron9bc11d32016-10-08 17:39:09 +01001217 ret = sca3000_read_data_short(st, SCA3000_REG_MODE_ADDR, 1);
Jonathan Cameron45ae5562016-10-08 17:39:08 +01001218 if (ret)
1219 return ret;
1220 /* if off and should be on */
1221 if ((st->mo_det_use_count) &&
Jonathan Cameron9bc11d32016-10-08 17:39:09 +01001222 ((st->rx[0] & SCA3000_REG_MODE_MODE_MASK)
1223 != SCA3000_REG_MODE_MEAS_MODE_MOT_DET))
1224 return sca3000_write_reg(st, SCA3000_REG_MODE_ADDR,
1225 (st->rx[0] & ~SCA3000_REG_MODE_MODE_MASK)
1226 | SCA3000_REG_MODE_MEAS_MODE_MOT_DET);
Jonathan Cameron45ae5562016-10-08 17:39:08 +01001227 /* if on and should be off */
1228 else if (!(st->mo_det_use_count) &&
Jonathan Cameron9bc11d32016-10-08 17:39:09 +01001229 ((st->rx[0] & SCA3000_REG_MODE_MODE_MASK)
1230 == SCA3000_REG_MODE_MEAS_MODE_MOT_DET))
1231 return sca3000_write_reg(st, SCA3000_REG_MODE_ADDR,
1232 st->rx[0] & SCA3000_REG_MODE_MODE_MASK);
Jonathan Cameron45ae5562016-10-08 17:39:08 +01001233 else
1234 return 0;
Jonathan Cameron574fb252009-08-18 18:06:25 +01001235}
1236
1237/**
Jonathan Cameron2ccf6142016-10-08 17:39:17 +01001238 * sca3000_write_event_config() - simple on off control for motion detector
1239 * @indio_dev: IIO device instance specific structure. Data specific to this
1240 * particular driver may be accessed via iio_priv(indio_dev).
1241 * @chan: Description of the channel whose event we are configuring.
1242 * @type: The type of event.
1243 * @dir: The direction of the event.
1244 * @state: Desired state of event being configured.
Jonathan Cameron574fb252009-08-18 18:06:25 +01001245 *
1246 * This is a per axis control, but enabling any will result in the
1247 * motion detector unit being enabled.
1248 * N.B. enabling motion detector stops normal data acquisition.
1249 * There is a complexity in knowing which mode to return to when
1250 * this mode is disabled. Currently normal mode is assumed.
1251 **/
Jonathan Cameron25888dc2011-05-18 14:41:01 +01001252static int sca3000_write_event_config(struct iio_dev *indio_dev,
Lars-Peter Clausen129c3f62013-10-07 15:11:00 +01001253 const struct iio_chan_spec *chan,
1254 enum iio_event_type type,
1255 enum iio_event_direction dir,
Jonathan Cameron25888dc2011-05-18 14:41:01 +01001256 int state)
Jonathan Cameron574fb252009-08-18 18:06:25 +01001257{
Jonathan Cameron83f04222011-06-27 13:07:16 +01001258 struct sca3000_state *st = iio_priv(indio_dev);
Jonathan Cameron45ae5562016-10-08 17:39:08 +01001259 int ret;
Jonathan Cameron574fb252009-08-18 18:06:25 +01001260
1261 mutex_lock(&st->lock);
Jonathan Cameron45ae5562016-10-08 17:39:08 +01001262 switch (chan->channel2) {
1263 case IIO_MOD_X_AND_Y_AND_Z:
1264 ret = sca3000_freefall_set_state(indio_dev, state);
1265 break;
Jonathan Cameron25888dc2011-05-18 14:41:01 +01001266
Jonathan Cameron45ae5562016-10-08 17:39:08 +01001267 case IIO_MOD_X:
1268 case IIO_MOD_Y:
1269 case IIO_MOD_Z:
Jonathan Cameron74bdc942016-10-08 17:39:11 +01001270 ret = sca3000_motion_detect_set_state(indio_dev,
1271 chan->address,
Jonathan Cameron45ae5562016-10-08 17:39:08 +01001272 state);
1273 break;
1274 default:
1275 ret = -EINVAL;
1276 break;
1277 }
Jonathan Cameron574fb252009-08-18 18:06:25 +01001278 mutex_unlock(&st->lock);
1279
Jonathan Cameron25888dc2011-05-18 14:41:01 +01001280 return ret;
Jonathan Cameron574fb252009-08-18 18:06:25 +01001281}
1282
Jonathan Cameronced5c032016-10-08 17:39:02 +01001283static inline
1284int __sca3000_hw_ring_state_set(struct iio_dev *indio_dev, bool state)
1285{
1286 struct sca3000_state *st = iio_priv(indio_dev);
1287 int ret;
1288
1289 mutex_lock(&st->lock);
Jonathan Cameron9bc11d32016-10-08 17:39:09 +01001290 ret = sca3000_read_data_short(st, SCA3000_REG_MODE_ADDR, 1);
Jonathan Cameronced5c032016-10-08 17:39:02 +01001291 if (ret)
1292 goto error_ret;
1293 if (state) {
1294 dev_info(&indio_dev->dev, "supposedly enabling ring buffer\n");
1295 ret = sca3000_write_reg(st,
Jonathan Cameron9bc11d32016-10-08 17:39:09 +01001296 SCA3000_REG_MODE_ADDR,
1297 (st->rx[0] | SCA3000_REG_MODE_RING_BUF_ENABLE));
Jonathan Cameronced5c032016-10-08 17:39:02 +01001298 } else
1299 ret = sca3000_write_reg(st,
Jonathan Cameron9bc11d32016-10-08 17:39:09 +01001300 SCA3000_REG_MODE_ADDR,
1301 (st->rx[0] & ~SCA3000_REG_MODE_RING_BUF_ENABLE));
Jonathan Cameronced5c032016-10-08 17:39:02 +01001302error_ret:
1303 mutex_unlock(&st->lock);
1304
1305 return ret;
1306}
1307
1308/**
Jonathan Cameron2ccf6142016-10-08 17:39:17 +01001309 * sca3000_hw_ring_preenable() - hw ring buffer preenable function
1310 * @indio_dev: structure representing the IIO device. Device instance
1311 * specific state can be accessed via iio_priv(indio_dev).
Jonathan Cameronced5c032016-10-08 17:39:02 +01001312 *
1313 * Very simple enable function as the chip will allows normal reads
1314 * during ring buffer operation so as long as it is indeed running
1315 * before we notify the core, the precise ordering does not matter.
Jonathan Cameron2ccf6142016-10-08 17:39:17 +01001316 */
Jonathan Cameronced5c032016-10-08 17:39:02 +01001317static int sca3000_hw_ring_preenable(struct iio_dev *indio_dev)
1318{
Jonathan Cameronc19a0252016-10-08 17:39:05 +01001319 int ret;
1320 struct sca3000_state *st = iio_priv(indio_dev);
1321
Jonathan Cameronc19a0252016-10-08 17:39:05 +01001322 mutex_lock(&st->lock);
1323
1324 /* Enable the 50% full interrupt */
Jonathan Cameron9bc11d32016-10-08 17:39:09 +01001325 ret = sca3000_read_data_short(st, SCA3000_REG_INT_MASK_ADDR, 1);
Jonathan Cameronc19a0252016-10-08 17:39:05 +01001326 if (ret)
1327 goto error_unlock;
1328 ret = sca3000_write_reg(st,
Jonathan Cameron9bc11d32016-10-08 17:39:09 +01001329 SCA3000_REG_INT_MASK_ADDR,
1330 st->rx[0] | SCA3000_REG_INT_MASK_RING_HALF);
Jonathan Cameronc19a0252016-10-08 17:39:05 +01001331 if (ret)
1332 goto error_unlock;
1333
1334 mutex_unlock(&st->lock);
1335
Jonathan Cameronced5c032016-10-08 17:39:02 +01001336 return __sca3000_hw_ring_state_set(indio_dev, 1);
Jonathan Cameronc19a0252016-10-08 17:39:05 +01001337
1338error_unlock:
1339 mutex_unlock(&st->lock);
1340
1341 return ret;
Jonathan Cameronced5c032016-10-08 17:39:02 +01001342}
1343
1344static int sca3000_hw_ring_postdisable(struct iio_dev *indio_dev)
1345{
Jonathan Cameronc19a0252016-10-08 17:39:05 +01001346 int ret;
1347 struct sca3000_state *st = iio_priv(indio_dev);
1348
1349 ret = __sca3000_hw_ring_state_set(indio_dev, 0);
1350 if (ret)
1351 return ret;
1352
1353 /* Disable the 50% full interrupt */
1354 mutex_lock(&st->lock);
1355
Jonathan Cameron9bc11d32016-10-08 17:39:09 +01001356 ret = sca3000_read_data_short(st, SCA3000_REG_INT_MASK_ADDR, 1);
Jonathan Cameronc19a0252016-10-08 17:39:05 +01001357 if (ret)
1358 goto unlock;
1359 ret = sca3000_write_reg(st,
Jonathan Cameron9bc11d32016-10-08 17:39:09 +01001360 SCA3000_REG_INT_MASK_ADDR,
1361 st->rx[0] & ~SCA3000_REG_INT_MASK_RING_HALF);
Jonathan Cameronc19a0252016-10-08 17:39:05 +01001362unlock:
1363 mutex_unlock(&st->lock);
1364 return ret;
Jonathan Cameronced5c032016-10-08 17:39:02 +01001365}
1366
1367static const struct iio_buffer_setup_ops sca3000_ring_setup_ops = {
1368 .preenable = &sca3000_hw_ring_preenable,
1369 .postdisable = &sca3000_hw_ring_postdisable,
1370};
1371
Jonathan Cameron574fb252009-08-18 18:06:25 +01001372/**
Jonathan Cameron2ccf6142016-10-08 17:39:17 +01001373 * sca3000_clean_setup() - get the device into a predictable state
1374 * @st: Device instance specific private data structure
Jonathan Cameron574fb252009-08-18 18:06:25 +01001375 *
1376 * Devices use flash memory to store many of the register values
1377 * and hence can come up in somewhat unpredictable states.
1378 * Hence reset everything on driver load.
Jonathan Cameron2ccf6142016-10-08 17:39:17 +01001379 */
Jonathan Cameron574fb252009-08-18 18:06:25 +01001380static int sca3000_clean_setup(struct sca3000_state *st)
1381{
1382 int ret;
Jonathan Cameron574fb252009-08-18 18:06:25 +01001383
1384 mutex_lock(&st->lock);
1385 /* Ensure all interrupts have been acknowledged */
Jonathan Cameron9bc11d32016-10-08 17:39:09 +01001386 ret = sca3000_read_data_short(st, SCA3000_REG_INT_STATUS_ADDR, 1);
Jonathan Cameron574fb252009-08-18 18:06:25 +01001387 if (ret)
1388 goto error_ret;
Jonathan Cameron574fb252009-08-18 18:06:25 +01001389
1390 /* Turn off all motion detection channels */
Jonathan Cameron25888dc2011-05-18 14:41:01 +01001391 ret = sca3000_read_ctrl_reg(st, SCA3000_REG_CTRL_SEL_MD_CTRL);
1392 if (ret < 0)
Jonathan Cameron574fb252009-08-18 18:06:25 +01001393 goto error_ret;
Jonathan Cameron25888dc2011-05-18 14:41:01 +01001394 ret = sca3000_write_ctrl_reg(st, SCA3000_REG_CTRL_SEL_MD_CTRL,
1395 ret & SCA3000_MD_CTRL_PROT_MASK);
Jonathan Cameron574fb252009-08-18 18:06:25 +01001396 if (ret)
1397 goto error_ret;
1398
1399 /* Disable ring buffer */
Jonathan Cameron25888dc2011-05-18 14:41:01 +01001400 ret = sca3000_read_ctrl_reg(st, SCA3000_REG_CTRL_SEL_OUT_CTRL);
Luis de Bethencourtaea7b1d2016-06-22 20:43:31 +01001401 if (ret < 0)
1402 goto error_ret;
Jonathan Cameron25888dc2011-05-18 14:41:01 +01001403 ret = sca3000_write_ctrl_reg(st, SCA3000_REG_CTRL_SEL_OUT_CTRL,
Jonathan Cameron9bc11d32016-10-08 17:39:09 +01001404 (ret & SCA3000_REG_OUT_CTRL_PROT_MASK)
1405 | SCA3000_REG_OUT_CTRL_BUF_X_EN
1406 | SCA3000_REG_OUT_CTRL_BUF_Y_EN
1407 | SCA3000_REG_OUT_CTRL_BUF_Z_EN
1408 | SCA3000_REG_OUT_CTRL_BUF_DIV_4);
Jonathan Cameron574fb252009-08-18 18:06:25 +01001409 if (ret)
1410 goto error_ret;
1411 /* Enable interrupts, relevant to mode and set up as active low */
Jonathan Cameron9bc11d32016-10-08 17:39:09 +01001412 ret = sca3000_read_data_short(st, SCA3000_REG_INT_MASK_ADDR, 1);
Jonathan Cameron574fb252009-08-18 18:06:25 +01001413 if (ret)
1414 goto error_ret;
1415 ret = sca3000_write_reg(st,
Jonathan Cameron9bc11d32016-10-08 17:39:09 +01001416 SCA3000_REG_INT_MASK_ADDR,
1417 (ret & SCA3000_REG_INT_MASK_PROT_MASK)
1418 | SCA3000_REG_INT_MASK_ACTIVE_LOW);
Jonathan Cameron574fb252009-08-18 18:06:25 +01001419 if (ret)
1420 goto error_ret;
Peter Meerwald5262d8f2014-01-13 21:28:00 +00001421 /*
1422 * Select normal measurement mode, free fall off, ring off
1423 * Ring in 12 bit mode - it is fine to overwrite reserved bits 3,5
1424 * as that occurs in one of the example on the datasheet
1425 */
Jonathan Cameron9bc11d32016-10-08 17:39:09 +01001426 ret = sca3000_read_data_short(st, SCA3000_REG_MODE_ADDR, 1);
Jonathan Cameron574fb252009-08-18 18:06:25 +01001427 if (ret)
1428 goto error_ret;
Jonathan Cameron9bc11d32016-10-08 17:39:09 +01001429 ret = sca3000_write_reg(st, SCA3000_REG_MODE_ADDR,
Jonathan Cameron25888dc2011-05-18 14:41:01 +01001430 (st->rx[0] & SCA3000_MODE_PROT_MASK));
Jonathan Cameron574fb252009-08-18 18:06:25 +01001431
1432error_ret:
1433 mutex_unlock(&st->lock);
1434 return ret;
1435}
1436
Jonathan Cameron6fe81352011-05-18 14:42:37 +01001437static const struct iio_info sca3000_info = {
1438 .attrs = &sca3000_attribute_group,
1439 .read_raw = &sca3000_read_raw,
Ico Doornekampe0f3fc92016-09-13 21:14:14 +02001440 .write_raw = &sca3000_write_raw,
Jonathan Cameron45ae5562016-10-08 17:39:08 +01001441 .read_event_value = &sca3000_read_event_value,
1442 .write_event_value = &sca3000_write_event_value,
Lars-Peter Clausencb955852013-12-07 10:45:00 +00001443 .read_event_config = &sca3000_read_event_config,
1444 .write_event_config = &sca3000_write_event_config,
Jonathan Cameron6fe81352011-05-18 14:42:37 +01001445};
1446
Bill Pemberton4ae1c612012-11-19 13:21:57 -05001447static int sca3000_probe(struct spi_device *spi)
Jonathan Cameron574fb252009-08-18 18:06:25 +01001448{
Jonathan Camerond2fffd62011-10-14 14:46:58 +01001449 int ret;
Jonathan Cameron574fb252009-08-18 18:06:25 +01001450 struct sca3000_state *st;
Jonathan Cameron83f04222011-06-27 13:07:16 +01001451 struct iio_dev *indio_dev;
Jonathan Cameron574fb252009-08-18 18:06:25 +01001452
Sachin Kamat0189d932013-08-24 19:48:00 +01001453 indio_dev = devm_iio_device_alloc(&spi->dev, sizeof(*st));
1454 if (!indio_dev)
1455 return -ENOMEM;
Jonathan Cameron574fb252009-08-18 18:06:25 +01001456
Dan Carpenter03bda052011-06-29 22:50:48 +03001457 st = iio_priv(indio_dev);
Jonathan Cameron83f04222011-06-27 13:07:16 +01001458 spi_set_drvdata(spi, indio_dev);
Jonathan Cameron574fb252009-08-18 18:06:25 +01001459 st->us = spi;
1460 mutex_init(&st->lock);
Jonathan Cameron25888dc2011-05-18 14:41:01 +01001461 st->info = &sca3000_spi_chip_info_tbl[spi_get_device_id(spi)
1462 ->driver_data];
Jonathan Cameron574fb252009-08-18 18:06:25 +01001463
Jonathan Cameron83f04222011-06-27 13:07:16 +01001464 indio_dev->name = spi_get_device_id(spi)->name;
Peter Meerwaldbb0090e2014-01-13 21:28:00 +00001465 indio_dev->info = &sca3000_info;
1466 if (st->info->temp_output) {
1467 indio_dev->channels = sca3000_channels_with_temp;
1468 indio_dev->num_channels =
1469 ARRAY_SIZE(sca3000_channels_with_temp);
1470 } else {
1471 indio_dev->channels = sca3000_channels;
1472 indio_dev->num_channels = ARRAY_SIZE(sca3000_channels);
1473 }
Jonathan Cameron83f04222011-06-27 13:07:16 +01001474 indio_dev->modes = INDIO_DIRECT_MODE;
Jonathan Cameron574fb252009-08-18 18:06:25 +01001475
Alexandru Ardeleane03ed892021-02-15 12:40:23 +02001476 ret = devm_iio_kfifo_buffer_setup(&spi->dev, indio_dev,
1477 INDIO_BUFFER_SOFTWARE,
1478 &sca3000_ring_setup_ops);
Christophe JAILLETda2d5442018-04-08 21:44:15 +02001479 if (ret)
1480 return ret;
Jonathan Camerond2fffd62011-10-14 14:46:58 +01001481
Jonathan Cameron3e2c96e2011-10-12 10:57:33 +01001482 if (spi->irq) {
Jonathan Cameron25888dc2011-05-18 14:41:01 +01001483 ret = request_threaded_irq(spi->irq,
1484 NULL,
1485 &sca3000_event_handler,
Lars-Peter Clausena91aff12012-07-02 10:54:45 +02001486 IRQF_TRIGGER_FALLING | IRQF_ONESHOT,
Jonathan Cameron25888dc2011-05-18 14:41:01 +01001487 "sca3000",
Jonathan Cameron83f04222011-06-27 13:07:16 +01001488 indio_dev);
Jonathan Cameron574fb252009-08-18 18:06:25 +01001489 if (ret)
Jonathan Cameron9a4936d2016-10-08 17:39:15 +01001490 return ret;
Jonathan Cameron574fb252009-08-18 18:06:25 +01001491 }
Jonathan Cameron574fb252009-08-18 18:06:25 +01001492 ret = sca3000_clean_setup(st);
1493 if (ret)
Jonathan Cameron25888dc2011-05-18 14:41:01 +01001494 goto error_free_irq;
Jonathan Cameron7ab9fa0052016-10-08 17:39:14 +01001495
1496 ret = sca3000_print_rev(indio_dev);
1497 if (ret)
1498 goto error_free_irq;
1499
Jonathan Cameron9a4936d2016-10-08 17:39:15 +01001500 return iio_device_register(indio_dev);
Jonathan Cameron574fb252009-08-18 18:06:25 +01001501
Jonathan Cameron25888dc2011-05-18 14:41:01 +01001502error_free_irq:
Jonathan Cameron3e2c96e2011-10-12 10:57:33 +01001503 if (spi->irq)
Jonathan Cameron83f04222011-06-27 13:07:16 +01001504 free_irq(spi->irq, indio_dev);
Jonathan Cameron9a4936d2016-10-08 17:39:15 +01001505
Jonathan Cameron574fb252009-08-18 18:06:25 +01001506 return ret;
1507}
1508
1509static int sca3000_stop_all_interrupts(struct sca3000_state *st)
1510{
1511 int ret;
Jonathan Cameron574fb252009-08-18 18:06:25 +01001512
1513 mutex_lock(&st->lock);
Jonathan Cameron9bc11d32016-10-08 17:39:09 +01001514 ret = sca3000_read_data_short(st, SCA3000_REG_INT_MASK_ADDR, 1);
Jonathan Cameron574fb252009-08-18 18:06:25 +01001515 if (ret)
1516 goto error_ret;
Jonathan Cameron9bc11d32016-10-08 17:39:09 +01001517 ret = sca3000_write_reg(st, SCA3000_REG_INT_MASK_ADDR,
Jonathan Cameron25888dc2011-05-18 14:41:01 +01001518 (st->rx[0] &
Jonathan Cameron9bc11d32016-10-08 17:39:09 +01001519 ~(SCA3000_REG_INT_MASK_RING_THREE_QUARTER |
1520 SCA3000_REG_INT_MASK_RING_HALF |
1521 SCA3000_REG_INT_MASK_ALL_INTS)));
Jonathan Cameron574fb252009-08-18 18:06:25 +01001522error_ret:
Jonathan Cameron25888dc2011-05-18 14:41:01 +01001523 mutex_unlock(&st->lock);
Jonathan Cameron574fb252009-08-18 18:06:25 +01001524 return ret;
Jonathan Cameron574fb252009-08-18 18:06:25 +01001525}
1526
Bill Pemberton447d4f22012-11-19 13:26:37 -05001527static int sca3000_remove(struct spi_device *spi)
Jonathan Cameron574fb252009-08-18 18:06:25 +01001528{
Jonathan Cameron83f04222011-06-27 13:07:16 +01001529 struct iio_dev *indio_dev = spi_get_drvdata(spi);
1530 struct sca3000_state *st = iio_priv(indio_dev);
Lars-Peter Clausen67ad4e02012-09-22 09:56:00 +01001531
Jonathan Cameron9a4936d2016-10-08 17:39:15 +01001532 iio_device_unregister(indio_dev);
1533
Peter Meerwald5262d8f2014-01-13 21:28:00 +00001534 /* Must ensure no interrupts can be generated after this! */
Lars-Peter Clausen67ad4e02012-09-22 09:56:00 +01001535 sca3000_stop_all_interrupts(st);
Jonathan Cameron3e2c96e2011-10-12 10:57:33 +01001536 if (spi->irq)
Jonathan Cameron25888dc2011-05-18 14:41:01 +01001537 free_irq(spi->irq, indio_dev);
Jonathan Cameron9a4936d2016-10-08 17:39:15 +01001538
Jonathan Cameron574fb252009-08-18 18:06:25 +01001539 return 0;
1540}
1541
Jonathan Cameron25888dc2011-05-18 14:41:01 +01001542static const struct spi_device_id sca3000_id[] = {
1543 {"sca3000_d01", d01},
1544 {"sca3000_e02", e02},
1545 {"sca3000_e04", e04},
1546 {"sca3000_e05", e05},
1547 {}
1548};
Lars-Peter Clausen55e43902011-11-16 08:53:31 +01001549MODULE_DEVICE_TABLE(spi, sca3000_id);
Jonathan Cameron574fb252009-08-18 18:06:25 +01001550
Jonathan Cameron25888dc2011-05-18 14:41:01 +01001551static struct spi_driver sca3000_driver = {
1552 .driver = {
1553 .name = "sca3000",
Jonathan Cameron25888dc2011-05-18 14:41:01 +01001554 },
1555 .probe = sca3000_probe,
Bill Pembertone543acf2012-11-19 13:21:38 -05001556 .remove = sca3000_remove,
Jonathan Cameron25888dc2011-05-18 14:41:01 +01001557 .id_table = sca3000_id,
1558};
Lars-Peter Clausenae6ae6f2011-11-16 10:13:39 +01001559module_spi_driver(sca3000_driver);
Jonathan Cameron574fb252009-08-18 18:06:25 +01001560
Jonathan Cameron0f8c9622012-09-02 21:34:59 +01001561MODULE_AUTHOR("Jonathan Cameron <jic23@kernel.org>");
Jonathan Cameron574fb252009-08-18 18:06:25 +01001562MODULE_DESCRIPTION("VTI SCA3000 Series Accelerometers SPI driver");
1563MODULE_LICENSE("GPL v2");