1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Common library for ADIS16XXX devices
5 * Copyright 2012 Analog Devices Inc.
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/module.h>
16 #include <asm/unaligned.h>
18 #include <linux/iio/iio.h>
19 #include <linux/iio/imu/adis.h>
21 #define ADIS_MSC_CTRL_DATA_RDY_EN BIT(2)
22 #define ADIS_MSC_CTRL_DATA_RDY_POL_HIGH BIT(1)
23 #define ADIS_MSC_CTRL_DATA_RDY_DIO2 BIT(0)
24 #define ADIS_GLOB_CMD_SW_RESET BIT(7)
27 * __adis_write_reg() - write N bytes to register (unlocked version)
28 * @adis: The adis device
29 * @reg: The address of the lower of the two registers
30 * @value: The value to write to device (up to 4 bytes)
31 * @size: The size of the @value (in bytes)
33 int __adis_write_reg(struct adis *adis, unsigned int reg, unsigned int value,
36 unsigned int page = reg / ADIS_PAGE_SIZE;
38 struct spi_message msg;
39 struct spi_transfer xfers[] = {
45 .delay.value = adis->data->write_delay,
46 .delay.unit = SPI_DELAY_UNIT_USECS,
47 .cs_change_delay.value = adis->data->cs_change_delay,
48 .cs_change_delay.unit = SPI_DELAY_UNIT_USECS,
50 .tx_buf = adis->tx + 2,
54 .delay.value = adis->data->write_delay,
55 .delay.unit = SPI_DELAY_UNIT_USECS,
56 .cs_change_delay.value = adis->data->cs_change_delay,
57 .cs_change_delay.unit = SPI_DELAY_UNIT_USECS,
59 .tx_buf = adis->tx + 4,
63 .delay.value = adis->data->write_delay,
64 .delay.unit = SPI_DELAY_UNIT_USECS,
65 .cs_change_delay.value = adis->data->cs_change_delay,
66 .cs_change_delay.unit = SPI_DELAY_UNIT_USECS,
68 .tx_buf = adis->tx + 6,
71 .delay.value = adis->data->write_delay,
72 .delay.unit = SPI_DELAY_UNIT_USECS,
74 .tx_buf = adis->tx + 8,
77 .delay.value = adis->data->write_delay,
78 .delay.unit = SPI_DELAY_UNIT_USECS,
82 spi_message_init(&msg);
84 if (adis->current_page != page) {
85 adis->tx[0] = ADIS_WRITE_REG(ADIS_REG_PAGE_ID);
87 spi_message_add_tail(&xfers[0], &msg);
92 adis->tx[8] = ADIS_WRITE_REG(reg + 3);
93 adis->tx[9] = (value >> 24) & 0xff;
94 adis->tx[6] = ADIS_WRITE_REG(reg + 2);
95 adis->tx[7] = (value >> 16) & 0xff;
98 adis->tx[4] = ADIS_WRITE_REG(reg + 1);
99 adis->tx[5] = (value >> 8) & 0xff;
102 adis->tx[2] = ADIS_WRITE_REG(reg);
103 adis->tx[3] = value & 0xff;
109 xfers[size].cs_change = 0;
111 for (i = 1; i <= size; i++)
112 spi_message_add_tail(&xfers[i], &msg);
114 ret = spi_sync(adis->spi, &msg);
116 dev_err(&adis->spi->dev, "Failed to write register 0x%02X: %d\n",
119 adis->current_page = page;
124 EXPORT_SYMBOL_NS_GPL(__adis_write_reg, IIO_ADISLIB);
127 * __adis_read_reg() - read N bytes from register (unlocked version)
128 * @adis: The adis device
129 * @reg: The address of the lower of the two registers
130 * @val: The value read back from the device
131 * @size: The size of the @val buffer
133 int __adis_read_reg(struct adis *adis, unsigned int reg, unsigned int *val,
136 unsigned int page = reg / ADIS_PAGE_SIZE;
137 struct spi_message msg;
139 struct spi_transfer xfers[] = {
145 .delay.value = adis->data->write_delay,
146 .delay.unit = SPI_DELAY_UNIT_USECS,
147 .cs_change_delay.value = adis->data->cs_change_delay,
148 .cs_change_delay.unit = SPI_DELAY_UNIT_USECS,
150 .tx_buf = adis->tx + 2,
154 .delay.value = adis->data->read_delay,
155 .delay.unit = SPI_DELAY_UNIT_USECS,
156 .cs_change_delay.value = adis->data->cs_change_delay,
157 .cs_change_delay.unit = SPI_DELAY_UNIT_USECS,
159 .tx_buf = adis->tx + 4,
164 .delay.value = adis->data->read_delay,
165 .delay.unit = SPI_DELAY_UNIT_USECS,
166 .cs_change_delay.value = adis->data->cs_change_delay,
167 .cs_change_delay.unit = SPI_DELAY_UNIT_USECS,
169 .rx_buf = adis->rx + 2,
172 .delay.value = adis->data->read_delay,
173 .delay.unit = SPI_DELAY_UNIT_USECS,
177 spi_message_init(&msg);
179 if (adis->current_page != page) {
180 adis->tx[0] = ADIS_WRITE_REG(ADIS_REG_PAGE_ID);
182 spi_message_add_tail(&xfers[0], &msg);
187 adis->tx[2] = ADIS_READ_REG(reg + 2);
189 spi_message_add_tail(&xfers[1], &msg);
192 adis->tx[4] = ADIS_READ_REG(reg);
194 spi_message_add_tail(&xfers[2], &msg);
195 spi_message_add_tail(&xfers[3], &msg);
201 ret = spi_sync(adis->spi, &msg);
203 dev_err(&adis->spi->dev, "Failed to read register 0x%02X: %d\n",
208 adis->current_page = page;
212 *val = get_unaligned_be32(adis->rx);
215 *val = get_unaligned_be16(adis->rx + 2);
221 EXPORT_SYMBOL_NS_GPL(__adis_read_reg, IIO_ADISLIB);
223 * __adis_update_bits_base() - ADIS Update bits function - Unlocked version
224 * @adis: The adis device
225 * @reg: The address of the lower of the two registers
226 * @mask: Bitmask to change
227 * @val: Value to be written
228 * @size: Size of the register to update
230 * Updates the desired bits of @reg in accordance with @mask and @val.
232 int __adis_update_bits_base(struct adis *adis, unsigned int reg, const u32 mask,
233 const u32 val, u8 size)
238 ret = __adis_read_reg(adis, reg, &__val, size);
242 __val = (__val & ~mask) | (val & mask);
244 return __adis_write_reg(adis, reg, __val, size);
246 EXPORT_SYMBOL_NS_GPL(__adis_update_bits_base, IIO_ADISLIB);
248 #ifdef CONFIG_DEBUG_FS
250 int adis_debugfs_reg_access(struct iio_dev *indio_dev, unsigned int reg,
251 unsigned int writeval, unsigned int *readval)
253 struct adis *adis = iio_device_get_drvdata(indio_dev);
259 ret = adis_read_reg_16(adis, reg, &val16);
266 return adis_write_reg_16(adis, reg, writeval);
268 EXPORT_SYMBOL_NS(adis_debugfs_reg_access, IIO_ADISLIB);
273 * __adis_enable_irq() - Enable or disable data ready IRQ (unlocked)
274 * @adis: The adis device
275 * @enable: Whether to enable the IRQ
277 * Returns 0 on success, negative error code otherwise
279 int __adis_enable_irq(struct adis *adis, bool enable)
284 if (adis->data->enable_irq)
285 return adis->data->enable_irq(adis, enable);
287 if (adis->data->unmasked_drdy) {
289 enable_irq(adis->spi->irq);
291 disable_irq(adis->spi->irq);
296 ret = __adis_read_reg_16(adis, adis->data->msc_ctrl_reg, &msc);
300 msc |= ADIS_MSC_CTRL_DATA_RDY_POL_HIGH;
301 msc &= ~ADIS_MSC_CTRL_DATA_RDY_DIO2;
303 msc |= ADIS_MSC_CTRL_DATA_RDY_EN;
305 msc &= ~ADIS_MSC_CTRL_DATA_RDY_EN;
307 return __adis_write_reg_16(adis, adis->data->msc_ctrl_reg, msc);
309 EXPORT_SYMBOL_NS(__adis_enable_irq, IIO_ADISLIB);
312 * __adis_check_status() - Check the device for error conditions (unlocked)
313 * @adis: The adis device
315 * Returns 0 on success, a negative error code otherwise
317 int __adis_check_status(struct adis *adis)
323 ret = __adis_read_reg_16(adis, adis->data->diag_stat_reg, &status);
327 status &= adis->data->status_error_mask;
332 for (i = 0; i < 16; ++i) {
333 if (status & BIT(i)) {
334 dev_err(&adis->spi->dev, "%s.\n",
335 adis->data->status_error_msgs[i]);
341 EXPORT_SYMBOL_NS_GPL(__adis_check_status, IIO_ADISLIB);
344 * __adis_reset() - Reset the device (unlocked version)
345 * @adis: The adis device
347 * Returns 0 on success, a negative error code otherwise
349 int __adis_reset(struct adis *adis)
352 const struct adis_timeout *timeouts = adis->data->timeouts;
354 ret = __adis_write_reg_8(adis, adis->data->glob_cmd_reg,
355 ADIS_GLOB_CMD_SW_RESET);
357 dev_err(&adis->spi->dev, "Failed to reset device: %d\n", ret);
361 msleep(timeouts->sw_reset_ms);
365 EXPORT_SYMBOL_NS_GPL(__adis_reset, IIO_ADIS_LIB);
367 static int adis_self_test(struct adis *adis)
370 const struct adis_timeout *timeouts = adis->data->timeouts;
372 ret = __adis_write_reg_16(adis, adis->data->self_test_reg,
373 adis->data->self_test_mask);
375 dev_err(&adis->spi->dev, "Failed to initiate self test: %d\n",
380 msleep(timeouts->self_test_ms);
382 ret = __adis_check_status(adis);
384 if (adis->data->self_test_no_autoclear)
385 __adis_write_reg_16(adis, adis->data->self_test_reg, 0x00);
391 * __adis_initial_startup() - Device initial setup
392 * @adis: The adis device
394 * The function performs a HW reset via a reset pin that should be specified
395 * via GPIOLIB. If no pin is configured a SW reset will be performed.
396 * The RST pin for the ADIS devices should be configured as ACTIVE_LOW.
398 * After the self-test operation is performed, the function will also check
399 * that the product ID is as expected. This assumes that drivers providing
400 * 'prod_id_reg' will also provide the 'prod_id'.
402 * Returns 0 if the device is operational, a negative error code otherwise.
404 * This function should be called early on in the device initialization sequence
405 * to ensure that the device is in a sane and known state and that it is usable.
407 int __adis_initial_startup(struct adis *adis)
409 const struct adis_timeout *timeouts = adis->data->timeouts;
410 struct gpio_desc *gpio;
414 /* check if the device has rst pin low */
415 gpio = devm_gpiod_get_optional(&adis->spi->dev, "reset", GPIOD_OUT_HIGH);
417 return PTR_ERR(gpio);
420 usleep_range(10, 12);
421 /* bring device out of reset */
422 gpiod_set_value_cansleep(gpio, 0);
423 msleep(timeouts->reset_ms);
425 ret = __adis_reset(adis);
430 ret = adis_self_test(adis);
435 * don't bother calling this if we can't unmask the IRQ as in this case
436 * the IRQ is most likely not yet requested and we will request it
437 * with 'IRQF_NO_AUTOEN' anyways.
439 if (!adis->data->unmasked_drdy)
440 __adis_enable_irq(adis, false);
442 if (!adis->data->prod_id_reg)
445 ret = adis_read_reg_16(adis, adis->data->prod_id_reg, &prod_id);
449 if (prod_id != adis->data->prod_id)
450 dev_warn(&adis->spi->dev,
451 "Device ID(%u) and product ID(%u) do not match.\n",
452 adis->data->prod_id, prod_id);
456 EXPORT_SYMBOL_NS_GPL(__adis_initial_startup, IIO_ADISLIB);
459 * adis_single_conversion() - Performs a single sample conversion
460 * @indio_dev: The IIO device
461 * @chan: The IIO channel
462 * @error_mask: Mask for the error bit
463 * @val: Result of the conversion
465 * Returns IIO_VAL_INT on success, a negative error code otherwise.
467 * The function performs a single conversion on a given channel and post
468 * processes the value accordingly to the channel spec. If a error_mask is given
469 * the function will check if the mask is set in the returned raw value. If it
470 * is set the function will perform a self-check. If the device does not report
471 * a error bit in the channels raw value set error_mask to 0.
473 int adis_single_conversion(struct iio_dev *indio_dev,
474 const struct iio_chan_spec *chan,
475 unsigned int error_mask, int *val)
477 struct adis *adis = iio_device_get_drvdata(indio_dev);
481 mutex_lock(&adis->state_lock);
483 ret = __adis_read_reg(adis, chan->address, &uval,
484 chan->scan_type.storagebits / 8);
488 if (uval & error_mask) {
489 ret = __adis_check_status(adis);
494 if (chan->scan_type.sign == 's')
495 *val = sign_extend32(uval, chan->scan_type.realbits - 1);
497 *val = uval & ((1 << chan->scan_type.realbits) - 1);
501 mutex_unlock(&adis->state_lock);
504 EXPORT_SYMBOL_NS_GPL(adis_single_conversion, IIO_ADISLIB);
507 * adis_init() - Initialize adis device structure
508 * @adis: The adis device
509 * @indio_dev: The iio device
510 * @spi: The spi device
511 * @data: Chip specific data
513 * Returns 0 on success, a negative error code otherwise.
515 * This function must be called, before any other adis helper function may be
518 int adis_init(struct adis *adis, struct iio_dev *indio_dev,
519 struct spi_device *spi, const struct adis_data *data)
521 if (!data || !data->timeouts) {
522 dev_err(&spi->dev, "No config data or timeouts not defined!\n");
526 mutex_init(&adis->state_lock);
529 iio_device_set_drvdata(indio_dev, adis);
531 if (data->has_paging) {
532 /* Need to set the page before first read/write */
533 adis->current_page = -1;
535 /* Page will always be 0 */
536 adis->current_page = 0;
541 EXPORT_SYMBOL_NS_GPL(adis_init, IIO_ADISLIB);
543 MODULE_LICENSE("GPL");
545 MODULE_DESCRIPTION("Common library code for ADIS16XXX devices");