1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Common library for ADIS16XXX devices
5 * Copyright 2012 Analog Devices Inc.
6 * Author: Lars-Peter Clausen <lars@metafoo.de>
9 #include <linux/delay.h>
10 #include <linux/gpio/consumer.h>
11 #include <linux/mutex.h>
12 #include <linux/device.h>
13 #include <linux/kernel.h>
14 #include <linux/spi/spi.h>
15 #include <linux/slab.h>
16 #include <linux/sysfs.h>
17 #include <linux/module.h>
18 #include <asm/unaligned.h>
20 #include <linux/iio/iio.h>
21 #include <linux/iio/sysfs.h>
22 #include <linux/iio/buffer.h>
23 #include <linux/iio/imu/adis.h>
25 #define ADIS_MSC_CTRL_DATA_RDY_EN BIT(2)
26 #define ADIS_MSC_CTRL_DATA_RDY_POL_HIGH BIT(1)
27 #define ADIS_MSC_CTRL_DATA_RDY_DIO2 BIT(0)
28 #define ADIS_GLOB_CMD_SW_RESET BIT(7)
31 * __adis_write_reg() - write N bytes to register (unlocked version)
32 * @adis: The adis device
33 * @reg: The address of the lower of the two registers
34 * @value: The value to write to device (up to 4 bytes)
35 * @size: The size of the @value (in bytes)
37 int __adis_write_reg(struct adis
*adis
, unsigned int reg
,
38 unsigned int value
, unsigned int size
)
40 unsigned int page
= reg
/ ADIS_PAGE_SIZE
;
42 struct spi_message msg
;
43 struct spi_transfer xfers
[] = {
49 .delay
.value
= adis
->data
->write_delay
,
50 .delay
.unit
= SPI_DELAY_UNIT_USECS
,
51 .cs_change_delay
.value
= adis
->data
->cs_change_delay
,
52 .cs_change_delay
.unit
= SPI_DELAY_UNIT_USECS
,
54 .tx_buf
= adis
->tx
+ 2,
58 .delay
.value
= adis
->data
->write_delay
,
59 .delay
.unit
= SPI_DELAY_UNIT_USECS
,
60 .cs_change_delay
.value
= adis
->data
->cs_change_delay
,
61 .cs_change_delay
.unit
= SPI_DELAY_UNIT_USECS
,
63 .tx_buf
= adis
->tx
+ 4,
67 .delay
.value
= adis
->data
->write_delay
,
68 .delay
.unit
= SPI_DELAY_UNIT_USECS
,
69 .cs_change_delay
.value
= adis
->data
->cs_change_delay
,
70 .cs_change_delay
.unit
= SPI_DELAY_UNIT_USECS
,
72 .tx_buf
= adis
->tx
+ 6,
75 .delay
.value
= adis
->data
->write_delay
,
76 .delay
.unit
= SPI_DELAY_UNIT_USECS
,
78 .tx_buf
= adis
->tx
+ 8,
81 .delay
.value
= adis
->data
->write_delay
,
82 .delay
.unit
= SPI_DELAY_UNIT_USECS
,
86 spi_message_init(&msg
);
88 if (adis
->current_page
!= page
) {
89 adis
->tx
[0] = ADIS_WRITE_REG(ADIS_REG_PAGE_ID
);
91 spi_message_add_tail(&xfers
[0], &msg
);
96 adis
->tx
[8] = ADIS_WRITE_REG(reg
+ 3);
97 adis
->tx
[9] = (value
>> 24) & 0xff;
98 adis
->tx
[6] = ADIS_WRITE_REG(reg
+ 2);
99 adis
->tx
[7] = (value
>> 16) & 0xff;
102 adis
->tx
[4] = ADIS_WRITE_REG(reg
+ 1);
103 adis
->tx
[5] = (value
>> 8) & 0xff;
106 adis
->tx
[2] = ADIS_WRITE_REG(reg
);
107 adis
->tx
[3] = value
& 0xff;
113 xfers
[size
].cs_change
= 0;
115 for (i
= 1; i
<= size
; i
++)
116 spi_message_add_tail(&xfers
[i
], &msg
);
118 ret
= spi_sync(adis
->spi
, &msg
);
120 dev_err(&adis
->spi
->dev
, "Failed to write register 0x%02X: %d\n",
123 adis
->current_page
= page
;
128 EXPORT_SYMBOL_GPL(__adis_write_reg
);
131 * __adis_read_reg() - read N bytes from register (unlocked version)
132 * @adis: The adis device
133 * @reg: The address of the lower of the two registers
134 * @val: The value read back from the device
135 * @size: The size of the @val buffer
137 int __adis_read_reg(struct adis
*adis
, unsigned int reg
,
138 unsigned int *val
, unsigned int size
)
140 unsigned int page
= reg
/ ADIS_PAGE_SIZE
;
141 struct spi_message msg
;
143 struct spi_transfer xfers
[] = {
149 .delay
.value
= adis
->data
->write_delay
,
150 .delay
.unit
= SPI_DELAY_UNIT_USECS
,
151 .cs_change_delay
.value
= adis
->data
->cs_change_delay
,
152 .cs_change_delay
.unit
= SPI_DELAY_UNIT_USECS
,
154 .tx_buf
= adis
->tx
+ 2,
158 .delay
.value
= adis
->data
->read_delay
,
159 .delay
.unit
= SPI_DELAY_UNIT_USECS
,
160 .cs_change_delay
.value
= adis
->data
->cs_change_delay
,
161 .cs_change_delay
.unit
= SPI_DELAY_UNIT_USECS
,
163 .tx_buf
= adis
->tx
+ 4,
168 .delay
.value
= adis
->data
->read_delay
,
169 .delay
.unit
= SPI_DELAY_UNIT_USECS
,
170 .cs_change_delay
.value
= adis
->data
->cs_change_delay
,
171 .cs_change_delay
.unit
= SPI_DELAY_UNIT_USECS
,
173 .rx_buf
= adis
->rx
+ 2,
176 .delay
.value
= adis
->data
->read_delay
,
177 .delay
.unit
= SPI_DELAY_UNIT_USECS
,
181 spi_message_init(&msg
);
183 if (adis
->current_page
!= page
) {
184 adis
->tx
[0] = ADIS_WRITE_REG(ADIS_REG_PAGE_ID
);
186 spi_message_add_tail(&xfers
[0], &msg
);
191 adis
->tx
[2] = ADIS_READ_REG(reg
+ 2);
193 spi_message_add_tail(&xfers
[1], &msg
);
196 adis
->tx
[4] = ADIS_READ_REG(reg
);
198 spi_message_add_tail(&xfers
[2], &msg
);
199 spi_message_add_tail(&xfers
[3], &msg
);
205 ret
= spi_sync(adis
->spi
, &msg
);
207 dev_err(&adis
->spi
->dev
, "Failed to read register 0x%02X: %d\n",
211 adis
->current_page
= page
;
216 *val
= get_unaligned_be32(adis
->rx
);
219 *val
= get_unaligned_be16(adis
->rx
+ 2);
225 EXPORT_SYMBOL_GPL(__adis_read_reg
);
227 #ifdef CONFIG_DEBUG_FS
229 int adis_debugfs_reg_access(struct iio_dev
*indio_dev
,
230 unsigned int reg
, unsigned int writeval
, unsigned int *readval
)
232 struct adis
*adis
= iio_device_get_drvdata(indio_dev
);
238 ret
= adis_read_reg_16(adis
, reg
, &val16
);
244 return adis_write_reg_16(adis
, reg
, writeval
);
247 EXPORT_SYMBOL(adis_debugfs_reg_access
);
252 * adis_enable_irq() - Enable or disable data ready IRQ
253 * @adis: The adis device
254 * @enable: Whether to enable the IRQ
256 * Returns 0 on success, negative error code otherwise
258 int adis_enable_irq(struct adis
*adis
, bool enable
)
263 mutex_lock(&adis
->state_lock
);
265 if (adis
->data
->enable_irq
) {
266 ret
= adis
->data
->enable_irq(adis
, enable
);
270 ret
= __adis_read_reg_16(adis
, adis
->data
->msc_ctrl_reg
, &msc
);
274 msc
|= ADIS_MSC_CTRL_DATA_RDY_POL_HIGH
;
275 msc
&= ~ADIS_MSC_CTRL_DATA_RDY_DIO2
;
277 msc
|= ADIS_MSC_CTRL_DATA_RDY_EN
;
279 msc
&= ~ADIS_MSC_CTRL_DATA_RDY_EN
;
281 ret
= __adis_write_reg_16(adis
, adis
->data
->msc_ctrl_reg
, msc
);
284 mutex_unlock(&adis
->state_lock
);
287 EXPORT_SYMBOL(adis_enable_irq
);
290 * __adis_check_status() - Check the device for error conditions (unlocked)
291 * @adis: The adis device
293 * Returns 0 on success, a negative error code otherwise
295 int __adis_check_status(struct adis
*adis
)
301 ret
= __adis_read_reg_16(adis
, adis
->data
->diag_stat_reg
, &status
);
305 status
&= adis
->data
->status_error_mask
;
310 for (i
= 0; i
< 16; ++i
) {
311 if (status
& BIT(i
)) {
312 dev_err(&adis
->spi
->dev
, "%s.\n",
313 adis
->data
->status_error_msgs
[i
]);
319 EXPORT_SYMBOL_GPL(__adis_check_status
);
322 * __adis_reset() - Reset the device (unlocked version)
323 * @adis: The adis device
325 * Returns 0 on success, a negative error code otherwise
327 int __adis_reset(struct adis
*adis
)
330 const struct adis_timeout
*timeouts
= adis
->data
->timeouts
;
332 ret
= __adis_write_reg_8(adis
, adis
->data
->glob_cmd_reg
,
333 ADIS_GLOB_CMD_SW_RESET
);
335 dev_err(&adis
->spi
->dev
, "Failed to reset device: %d\n", ret
);
339 msleep(timeouts
->sw_reset_ms
);
343 EXPORT_SYMBOL_GPL(__adis_reset
);
345 static int adis_self_test(struct adis
*adis
)
348 const struct adis_timeout
*timeouts
= adis
->data
->timeouts
;
350 ret
= __adis_write_reg_16(adis
, adis
->data
->self_test_reg
,
351 adis
->data
->self_test_mask
);
353 dev_err(&adis
->spi
->dev
, "Failed to initiate self test: %d\n",
358 msleep(timeouts
->self_test_ms
);
360 ret
= __adis_check_status(adis
);
362 if (adis
->data
->self_test_no_autoclear
)
363 __adis_write_reg_16(adis
, adis
->data
->self_test_reg
, 0x00);
369 * __adis_initial_startup() - Device initial setup
370 * @adis: The adis device
372 * The function performs a HW reset via a reset pin that should be specified
373 * via GPIOLIB. If no pin is configured a SW reset will be performed.
374 * The RST pin for the ADIS devices should be configured as ACTIVE_LOW.
376 * After the self-test operation is performed, the function will also check
377 * that the product ID is as expected. This assumes that drivers providing
378 * 'prod_id_reg' will also provide the 'prod_id'.
380 * Returns 0 if the device is operational, a negative error code otherwise.
382 * This function should be called early on in the device initialization sequence
383 * to ensure that the device is in a sane and known state and that it is usable.
385 int __adis_initial_startup(struct adis
*adis
)
387 const struct adis_timeout
*timeouts
= adis
->data
->timeouts
;
388 struct gpio_desc
*gpio
;
392 /* check if the device has rst pin low */
393 gpio
= devm_gpiod_get_optional(&adis
->spi
->dev
, "reset", GPIOD_ASIS
);
395 return PTR_ERR(gpio
);
398 gpiod_set_value_cansleep(gpio
, 1);
400 /* bring device out of reset */
401 gpiod_set_value_cansleep(gpio
, 0);
402 msleep(timeouts
->reset_ms
);
404 ret
= __adis_reset(adis
);
409 ret
= adis_self_test(adis
);
413 if (!adis
->data
->prod_id_reg
)
416 ret
= adis_read_reg_16(adis
, adis
->data
->prod_id_reg
, &prod_id
);
420 if (prod_id
!= adis
->data
->prod_id
)
421 dev_warn(&adis
->spi
->dev
,
422 "Device ID(%u) and product ID(%u) do not match.",
423 adis
->data
->prod_id
, prod_id
);
427 EXPORT_SYMBOL_GPL(__adis_initial_startup
);
430 * adis_single_conversion() - Performs a single sample conversion
431 * @indio_dev: The IIO device
432 * @chan: The IIO channel
433 * @error_mask: Mask for the error bit
434 * @val: Result of the conversion
436 * Returns IIO_VAL_INT on success, a negative error code otherwise.
438 * The function performs a single conversion on a given channel and post
439 * processes the value accordingly to the channel spec. If a error_mask is given
440 * the function will check if the mask is set in the returned raw value. If it
441 * is set the function will perform a self-check. If the device does not report
442 * a error bit in the channels raw value set error_mask to 0.
444 int adis_single_conversion(struct iio_dev
*indio_dev
,
445 const struct iio_chan_spec
*chan
, unsigned int error_mask
, int *val
)
447 struct adis
*adis
= iio_device_get_drvdata(indio_dev
);
451 mutex_lock(&adis
->state_lock
);
453 ret
= __adis_read_reg(adis
, chan
->address
, &uval
,
454 chan
->scan_type
.storagebits
/ 8);
458 if (uval
& error_mask
) {
459 ret
= __adis_check_status(adis
);
464 if (chan
->scan_type
.sign
== 's')
465 *val
= sign_extend32(uval
, chan
->scan_type
.realbits
- 1);
467 *val
= uval
& ((1 << chan
->scan_type
.realbits
) - 1);
471 mutex_unlock(&adis
->state_lock
);
474 EXPORT_SYMBOL_GPL(adis_single_conversion
);
477 * adis_init() - Initialize adis device structure
478 * @adis: The adis device
479 * @indio_dev: The iio device
480 * @spi: The spi device
481 * @data: Chip specific data
483 * Returns 0 on success, a negative error code otherwise.
485 * This function must be called, before any other adis helper function may be
488 int adis_init(struct adis
*adis
, struct iio_dev
*indio_dev
,
489 struct spi_device
*spi
, const struct adis_data
*data
)
491 if (!data
|| !data
->timeouts
) {
492 dev_err(&spi
->dev
, "No config data or timeouts not defined!\n");
496 mutex_init(&adis
->state_lock
);
499 iio_device_set_drvdata(indio_dev
, adis
);
501 if (data
->has_paging
) {
502 /* Need to set the page before first read/write */
503 adis
->current_page
= -1;
505 /* Page will always be 0 */
506 adis
->current_page
= 0;
509 return adis_enable_irq(adis
, false);
511 EXPORT_SYMBOL_GPL(adis_init
);
513 MODULE_LICENSE("GPL");
514 MODULE_AUTHOR("Lars-Peter Clausen <lars@metafoo.de>");
515 MODULE_DESCRIPTION("Common library code for ADIS16XXX devices");