1 // SPDX-License-Identifier: GPL-2.0
5 * Copyright 2019 Analog Devices Inc.
7 #include <linux/bitfield.h>
8 #include <linux/bitops.h>
10 #include <linux/debugfs.h>
11 #include <linux/delay.h>
12 #include <linux/device.h>
13 #include <linux/kernel.h>
14 #include <linux/iio/buffer.h>
15 #include <linux/iio/iio.h>
16 #include <linux/iio/imu/adis.h>
17 #include <linux/iio/trigger_consumer.h>
18 #include <linux/irq.h>
19 #include <linux/lcm.h>
20 #include <linux/math.h>
21 #include <linux/module.h>
22 #include <linux/mod_devicetable.h>
23 #include <linux/property.h>
24 #include <linux/spi/spi.h>
26 #define ADIS16475_REG_DIAG_STAT 0x02
27 #define ADIS16475_REG_X_GYRO_L 0x04
28 #define ADIS16475_REG_Y_GYRO_L 0x08
29 #define ADIS16475_REG_Z_GYRO_L 0x0C
30 #define ADIS16475_REG_X_ACCEL_L 0x10
31 #define ADIS16475_REG_Y_ACCEL_L 0x14
32 #define ADIS16475_REG_Z_ACCEL_L 0x18
33 #define ADIS16475_REG_TEMP_OUT 0x1c
34 #define ADIS16475_REG_X_GYRO_BIAS_L 0x40
35 #define ADIS16475_REG_Y_GYRO_BIAS_L 0x44
36 #define ADIS16475_REG_Z_GYRO_BIAS_L 0x48
37 #define ADIS16475_REG_X_ACCEL_BIAS_L 0x4c
38 #define ADIS16475_REG_Y_ACCEL_BIAS_L 0x50
39 #define ADIS16475_REG_Z_ACCEL_BIAS_L 0x54
40 #define ADIS16475_REG_FILT_CTRL 0x5c
41 #define ADIS16475_FILT_CTRL_MASK GENMASK(2, 0)
42 #define ADIS16475_FILT_CTRL(x) FIELD_PREP(ADIS16475_FILT_CTRL_MASK, x)
43 #define ADIS16475_REG_MSG_CTRL 0x60
44 #define ADIS16475_MSG_CTRL_DR_POL_MASK BIT(0)
45 #define ADIS16475_MSG_CTRL_DR_POL(x) \
46 FIELD_PREP(ADIS16475_MSG_CTRL_DR_POL_MASK, x)
47 #define ADIS16475_SYNC_MODE_MASK GENMASK(4, 2)
48 #define ADIS16475_SYNC_MODE(x) FIELD_PREP(ADIS16475_SYNC_MODE_MASK, x)
49 #define ADIS16475_REG_UP_SCALE 0x62
50 #define ADIS16475_REG_DEC_RATE 0x64
51 #define ADIS16475_REG_GLOB_CMD 0x68
52 #define ADIS16475_REG_FIRM_REV 0x6c
53 #define ADIS16475_REG_FIRM_DM 0x6e
54 #define ADIS16475_REG_FIRM_Y 0x70
55 #define ADIS16475_REG_PROD_ID 0x72
56 #define ADIS16475_REG_SERIAL_NUM 0x74
57 #define ADIS16475_REG_FLASH_CNT 0x7c
58 #define ADIS16500_BURST32_MASK BIT(9)
59 #define ADIS16500_BURST32(x) FIELD_PREP(ADIS16500_BURST32_MASK, x)
60 /* number of data elements in burst mode */
61 #define ADIS16475_BURST32_MAX_DATA 32
62 #define ADIS16475_BURST_MAX_DATA 20
63 #define ADIS16475_MAX_SCAN_DATA 20
64 /* spi max speed in brust mode */
65 #define ADIS16475_BURST_MAX_SPEED 1000000
66 #define ADIS16475_LSB_DEC_MASK BIT(0)
67 #define ADIS16475_LSB_FIR_MASK BIT(1)
70 ADIS16475_SYNC_DIRECT = 1,
71 ADIS16475_SYNC_SCALED,
72 ADIS16475_SYNC_OUTPUT,
73 ADIS16475_SYNC_PULSE = 5,
76 struct adis16475_sync {
82 struct adis16475_chip_info {
83 const struct iio_chan_spec *channels;
84 const struct adis16475_sync *sync;
85 const struct adis_data adis_data;
100 const struct adis16475_chip_info *info;
104 unsigned long lsb_flag;
106 /* Alignment needed for the timestamp */
107 __be16 data[ADIS16475_MAX_SCAN_DATA] __aligned(8);
111 ADIS16475_SCAN_GYRO_X,
112 ADIS16475_SCAN_GYRO_Y,
113 ADIS16475_SCAN_GYRO_Z,
114 ADIS16475_SCAN_ACCEL_X,
115 ADIS16475_SCAN_ACCEL_Y,
116 ADIS16475_SCAN_ACCEL_Z,
118 ADIS16475_SCAN_DIAG_S_FLAGS,
119 ADIS16475_SCAN_CRC_FAILURE,
122 static bool low_rate_allow;
123 module_param(low_rate_allow, bool, 0444);
124 MODULE_PARM_DESC(low_rate_allow,
125 "Allow IMU rates below the minimum advisable when external clk is used in SCALED mode (default: N)");
127 #ifdef CONFIG_DEBUG_FS
128 static ssize_t adis16475_show_firmware_revision(struct file *file,
129 char __user *userbuf,
130 size_t count, loff_t *ppos)
132 struct adis16475 *st = file->private_data;
138 ret = adis_read_reg_16(&st->adis, ADIS16475_REG_FIRM_REV, &rev);
142 len = scnprintf(buf, sizeof(buf), "%x.%x\n", rev >> 8, rev & 0xff);
144 return simple_read_from_buffer(userbuf, count, ppos, buf, len);
147 static const struct file_operations adis16475_firmware_revision_fops = {
149 .read = adis16475_show_firmware_revision,
150 .llseek = default_llseek,
151 .owner = THIS_MODULE,
154 static ssize_t adis16475_show_firmware_date(struct file *file,
155 char __user *userbuf,
156 size_t count, loff_t *ppos)
158 struct adis16475 *st = file->private_data;
164 ret = adis_read_reg_16(&st->adis, ADIS16475_REG_FIRM_Y, &year);
168 ret = adis_read_reg_16(&st->adis, ADIS16475_REG_FIRM_DM, &md);
172 len = snprintf(buf, sizeof(buf), "%.2x-%.2x-%.4x\n", md >> 8, md & 0xff,
175 return simple_read_from_buffer(userbuf, count, ppos, buf, len);
178 static const struct file_operations adis16475_firmware_date_fops = {
180 .read = adis16475_show_firmware_date,
181 .llseek = default_llseek,
182 .owner = THIS_MODULE,
185 static int adis16475_show_serial_number(void *arg, u64 *val)
187 struct adis16475 *st = arg;
191 ret = adis_read_reg_16(&st->adis, ADIS16475_REG_SERIAL_NUM, &serial);
199 DEFINE_DEBUGFS_ATTRIBUTE(adis16475_serial_number_fops,
200 adis16475_show_serial_number, NULL, "0x%.4llx\n");
202 static int adis16475_show_product_id(void *arg, u64 *val)
204 struct adis16475 *st = arg;
208 ret = adis_read_reg_16(&st->adis, ADIS16475_REG_PROD_ID, &prod_id);
216 DEFINE_DEBUGFS_ATTRIBUTE(adis16475_product_id_fops,
217 adis16475_show_product_id, NULL, "%llu\n");
219 static int adis16475_show_flash_count(void *arg, u64 *val)
221 struct adis16475 *st = arg;
225 ret = adis_read_reg_32(&st->adis, ADIS16475_REG_FLASH_CNT,
234 DEFINE_DEBUGFS_ATTRIBUTE(adis16475_flash_count_fops,
235 adis16475_show_flash_count, NULL, "%lld\n");
237 static void adis16475_debugfs_init(struct iio_dev *indio_dev)
239 struct adis16475 *st = iio_priv(indio_dev);
240 struct dentry *d = iio_get_debugfs_dentry(indio_dev);
242 debugfs_create_file_unsafe("serial_number", 0400,
243 d, st, &adis16475_serial_number_fops);
244 debugfs_create_file_unsafe("product_id", 0400,
245 d, st, &adis16475_product_id_fops);
246 debugfs_create_file_unsafe("flash_count", 0400,
247 d, st, &adis16475_flash_count_fops);
248 debugfs_create_file("firmware_revision", 0400,
249 d, st, &adis16475_firmware_revision_fops);
250 debugfs_create_file("firmware_date", 0400, d,
251 st, &adis16475_firmware_date_fops);
254 static void adis16475_debugfs_init(struct iio_dev *indio_dev)
259 static int adis16475_get_freq(struct adis16475 *st, u32 *freq)
263 u32 sample_rate = st->clk_freq;
265 adis_dev_lock(&st->adis);
267 if (st->sync_mode == ADIS16475_SYNC_SCALED) {
270 ret = __adis_read_reg_16(&st->adis, ADIS16475_REG_UP_SCALE, &sync_scale);
274 sample_rate = st->clk_freq * sync_scale;
277 ret = __adis_read_reg_16(&st->adis, ADIS16475_REG_DEC_RATE, &dec);
281 adis_dev_unlock(&st->adis);
283 *freq = DIV_ROUND_CLOSEST(sample_rate, dec + 1);
287 adis_dev_unlock(&st->adis);
291 static int adis16475_set_freq(struct adis16475 *st, const u32 freq)
295 u32 sample_rate = st->clk_freq;
300 adis_dev_lock(&st->adis);
302 * When using sync scaled mode, the input clock needs to be scaled so that we have
303 * an IMU sample rate between (optimally) 1900 and 2100. After this, we can use the
304 * decimation filter to lower the sampling rate in order to get what the user wants.
305 * Optimally, the user sample rate is a multiple of both the IMU sample rate and
306 * the input clock. Hence, calculating the sync_scale dynamically gives us better
307 * chances of achieving a perfect/integer value for DEC_RATE. The math here is:
308 * 1. lcm of the input clock and the desired output rate.
309 * 2. get the highest multiple of the previous result lower than the adis max rate.
310 * 3. The last result becomes the IMU sample rate. Use that to calculate SYNC_SCALE
311 * and DEC_RATE (to get the user output rate)
313 if (st->sync_mode == ADIS16475_SYNC_SCALED) {
314 unsigned long scaled_rate = lcm(st->clk_freq, freq);
318 * If lcm is bigger than the IMU maximum sampling rate there's no perfect
319 * solution. In this case, we get the highest multiple of the input clock
320 * lower than the IMU max sample rate.
322 if (scaled_rate > 2100000)
323 scaled_rate = 2100000 / st->clk_freq * st->clk_freq;
325 scaled_rate = 2100000 / scaled_rate * scaled_rate;
328 * This is not an hard requirement but it's not advised to run the IMU
329 * with a sample rate lower than 4000Hz due to possible undersampling
330 * issues. However, there are users that might really want to take the risk.
331 * Hence, we provide a module parameter for them. If set, we allow sample
332 * rates lower than 4KHz. By default, we won't allow this and we just roundup
333 * the rate to the next multiple of the input clock bigger than 4KHz. This
334 * is done like this as in some cases (when DEC_RATE is 0) might give
335 * us the closest value to the one desired by the user...
337 if (scaled_rate < 1900000 && !low_rate_allow)
338 scaled_rate = roundup(1900000, st->clk_freq);
340 sync_scale = scaled_rate / st->clk_freq;
341 ret = __adis_write_reg_16(&st->adis, ADIS16475_REG_UP_SCALE, sync_scale);
345 sample_rate = scaled_rate;
348 dec = DIV_ROUND_CLOSEST(sample_rate, freq);
353 if (dec > st->info->max_dec)
354 dec = st->info->max_dec;
356 ret = adis_write_reg_16(&st->adis, ADIS16475_REG_DEC_RATE, dec);
361 * If decimation is used, then gyro and accel data will have meaningful
362 * bits on the LSB registers. This info is used on the trigger handler.
364 assign_bit(ADIS16475_LSB_DEC_MASK, &st->lsb_flag, dec);
368 adis_dev_unlock(&st->adis);
372 /* The values are approximated. */
373 static const u32 adis16475_3db_freqs[] = {
374 [0] = 720, /* Filter disabled, full BW (~720Hz) */
383 static int adis16475_get_filter(struct adis16475 *st, u32 *filter)
387 const int mask = ADIS16475_FILT_CTRL_MASK;
389 ret = adis_read_reg_16(&st->adis, ADIS16475_REG_FILT_CTRL, &filter_sz);
393 *filter = adis16475_3db_freqs[filter_sz & mask];
398 static int adis16475_set_filter(struct adis16475 *st, const u32 filter)
400 int i = ARRAY_SIZE(adis16475_3db_freqs);
404 if (adis16475_3db_freqs[i] >= filter)
408 ret = adis_write_reg_16(&st->adis, ADIS16475_REG_FILT_CTRL,
409 ADIS16475_FILT_CTRL(i));
414 * If FIR is used, then gyro and accel data will have meaningful
415 * bits on the LSB registers. This info is used on the trigger handler.
417 assign_bit(ADIS16475_LSB_FIR_MASK, &st->lsb_flag, i);
422 static const u32 adis16475_calib_regs[] = {
423 [ADIS16475_SCAN_GYRO_X] = ADIS16475_REG_X_GYRO_BIAS_L,
424 [ADIS16475_SCAN_GYRO_Y] = ADIS16475_REG_Y_GYRO_BIAS_L,
425 [ADIS16475_SCAN_GYRO_Z] = ADIS16475_REG_Z_GYRO_BIAS_L,
426 [ADIS16475_SCAN_ACCEL_X] = ADIS16475_REG_X_ACCEL_BIAS_L,
427 [ADIS16475_SCAN_ACCEL_Y] = ADIS16475_REG_Y_ACCEL_BIAS_L,
428 [ADIS16475_SCAN_ACCEL_Z] = ADIS16475_REG_Z_ACCEL_BIAS_L,
431 static int adis16475_read_raw(struct iio_dev *indio_dev,
432 const struct iio_chan_spec *chan,
433 int *val, int *val2, long info)
435 struct adis16475 *st = iio_priv(indio_dev);
440 case IIO_CHAN_INFO_RAW:
441 return adis_single_conversion(indio_dev, chan, 0, val);
442 case IIO_CHAN_INFO_SCALE:
443 switch (chan->type) {
445 *val = st->info->gyro_max_val;
446 *val2 = st->info->gyro_max_scale;
447 return IIO_VAL_FRACTIONAL;
449 *val = st->info->accel_max_val;
450 *val2 = st->info->accel_max_scale;
451 return IIO_VAL_FRACTIONAL;
453 *val = st->info->temp_scale;
458 case IIO_CHAN_INFO_CALIBBIAS:
459 ret = adis_read_reg_32(&st->adis,
460 adis16475_calib_regs[chan->scan_index],
466 case IIO_CHAN_INFO_LOW_PASS_FILTER_3DB_FREQUENCY:
467 ret = adis16475_get_filter(st, val);
472 case IIO_CHAN_INFO_SAMP_FREQ:
473 ret = adis16475_get_freq(st, &tmp);
478 *val2 = (tmp % 1000) * 1000;
479 return IIO_VAL_INT_PLUS_MICRO;
485 static int adis16475_write_raw(struct iio_dev *indio_dev,
486 const struct iio_chan_spec *chan,
487 int val, int val2, long info)
489 struct adis16475 *st = iio_priv(indio_dev);
493 case IIO_CHAN_INFO_SAMP_FREQ:
494 tmp = val * 1000 + val2 / 1000;
495 return adis16475_set_freq(st, tmp);
496 case IIO_CHAN_INFO_LOW_PASS_FILTER_3DB_FREQUENCY:
497 return adis16475_set_filter(st, val);
498 case IIO_CHAN_INFO_CALIBBIAS:
499 return adis_write_reg_32(&st->adis,
500 adis16475_calib_regs[chan->scan_index],
507 #define ADIS16475_MOD_CHAN(_type, _mod, _address, _si, _r_bits, _s_bits) \
511 .channel2 = (_mod), \
512 .info_mask_separate = BIT(IIO_CHAN_INFO_RAW) | \
513 BIT(IIO_CHAN_INFO_CALIBBIAS), \
514 .info_mask_shared_by_type = BIT(IIO_CHAN_INFO_SCALE), \
515 .info_mask_shared_by_all = BIT(IIO_CHAN_INFO_SAMP_FREQ) | \
516 BIT(IIO_CHAN_INFO_LOW_PASS_FILTER_3DB_FREQUENCY), \
517 .address = (_address), \
518 .scan_index = (_si), \
521 .realbits = (_r_bits), \
522 .storagebits = (_s_bits), \
523 .endianness = IIO_BE, \
527 #define ADIS16475_GYRO_CHANNEL(_mod) \
528 ADIS16475_MOD_CHAN(IIO_ANGL_VEL, IIO_MOD_ ## _mod, \
529 ADIS16475_REG_ ## _mod ## _GYRO_L, \
530 ADIS16475_SCAN_GYRO_ ## _mod, 32, 32)
532 #define ADIS16475_ACCEL_CHANNEL(_mod) \
533 ADIS16475_MOD_CHAN(IIO_ACCEL, IIO_MOD_ ## _mod, \
534 ADIS16475_REG_ ## _mod ## _ACCEL_L, \
535 ADIS16475_SCAN_ACCEL_ ## _mod, 32, 32)
537 #define ADIS16475_TEMP_CHANNEL() { \
541 .info_mask_separate = BIT(IIO_CHAN_INFO_RAW) | \
542 BIT(IIO_CHAN_INFO_SCALE), \
543 .info_mask_shared_by_all = BIT(IIO_CHAN_INFO_SAMP_FREQ) | \
544 BIT(IIO_CHAN_INFO_LOW_PASS_FILTER_3DB_FREQUENCY), \
545 .address = ADIS16475_REG_TEMP_OUT, \
546 .scan_index = ADIS16475_SCAN_TEMP, \
551 .endianness = IIO_BE, \
555 static const struct iio_chan_spec adis16475_channels[] = {
556 ADIS16475_GYRO_CHANNEL(X),
557 ADIS16475_GYRO_CHANNEL(Y),
558 ADIS16475_GYRO_CHANNEL(Z),
559 ADIS16475_ACCEL_CHANNEL(X),
560 ADIS16475_ACCEL_CHANNEL(Y),
561 ADIS16475_ACCEL_CHANNEL(Z),
562 ADIS16475_TEMP_CHANNEL(),
563 IIO_CHAN_SOFT_TIMESTAMP(7)
566 enum adis16475_variant {
590 ADIS16475_DIAG_STAT_DATA_PATH = 1,
591 ADIS16475_DIAG_STAT_FLASH_MEM,
592 ADIS16475_DIAG_STAT_SPI,
593 ADIS16475_DIAG_STAT_STANDBY,
594 ADIS16475_DIAG_STAT_SENSOR,
595 ADIS16475_DIAG_STAT_MEMORY,
596 ADIS16475_DIAG_STAT_CLK,
599 static const char * const adis16475_status_error_msgs[] = {
600 [ADIS16475_DIAG_STAT_DATA_PATH] = "Data Path Overrun",
601 [ADIS16475_DIAG_STAT_FLASH_MEM] = "Flash memory update failure",
602 [ADIS16475_DIAG_STAT_SPI] = "SPI communication error",
603 [ADIS16475_DIAG_STAT_STANDBY] = "Standby mode",
604 [ADIS16475_DIAG_STAT_SENSOR] = "Sensor failure",
605 [ADIS16475_DIAG_STAT_MEMORY] = "Memory failure",
606 [ADIS16475_DIAG_STAT_CLK] = "Clock error",
609 static int adis16475_enable_irq(struct adis *adis, bool enable)
612 * There is no way to gate the data-ready signal internally inside the
613 * ADIS16475. We can only control it's polarity...
616 enable_irq(adis->spi->irq);
618 disable_irq(adis->spi->irq);
623 #define ADIS16475_DATA(_prod_id, _timeouts) \
625 .msc_ctrl_reg = ADIS16475_REG_MSG_CTRL, \
626 .glob_cmd_reg = ADIS16475_REG_GLOB_CMD, \
627 .diag_stat_reg = ADIS16475_REG_DIAG_STAT, \
628 .prod_id_reg = ADIS16475_REG_PROD_ID, \
629 .prod_id = (_prod_id), \
630 .self_test_mask = BIT(2), \
631 .self_test_reg = ADIS16475_REG_GLOB_CMD, \
632 .cs_change_delay = 16, \
635 .status_error_msgs = adis16475_status_error_msgs, \
636 .status_error_mask = BIT(ADIS16475_DIAG_STAT_DATA_PATH) | \
637 BIT(ADIS16475_DIAG_STAT_FLASH_MEM) | \
638 BIT(ADIS16475_DIAG_STAT_SPI) | \
639 BIT(ADIS16475_DIAG_STAT_STANDBY) | \
640 BIT(ADIS16475_DIAG_STAT_SENSOR) | \
641 BIT(ADIS16475_DIAG_STAT_MEMORY) | \
642 BIT(ADIS16475_DIAG_STAT_CLK), \
643 .enable_irq = adis16475_enable_irq, \
644 .timeouts = (_timeouts), \
645 .burst_reg_cmd = ADIS16475_REG_GLOB_CMD, \
646 .burst_len = ADIS16475_BURST_MAX_DATA, \
647 .burst_max_len = ADIS16475_BURST32_MAX_DATA, \
648 .burst_max_speed_hz = ADIS16475_BURST_MAX_SPEED \
651 static const struct adis16475_sync adis16475_sync_mode[] = {
652 { ADIS16475_SYNC_OUTPUT },
653 { ADIS16475_SYNC_DIRECT, 1900, 2100 },
654 { ADIS16475_SYNC_SCALED, 1, 128 },
655 { ADIS16475_SYNC_PULSE, 1000, 2100 },
658 static const struct adis_timeout adis16475_timeouts = {
664 static const struct adis_timeout adis1650x_timeouts = {
670 static const struct adis16475_chip_info adis16475_chip_info[] = {
673 .num_channels = ARRAY_SIZE(adis16475_channels),
674 .channels = adis16475_channels,
676 .gyro_max_scale = IIO_RAD_TO_DEGREE(10 << 16),
678 .accel_max_scale = IIO_M_S_2_TO_G(800 << 16),
682 .sync = adis16475_sync_mode,
683 .num_sync = ARRAY_SIZE(adis16475_sync_mode),
684 .adis_data = ADIS16475_DATA(16470, &adis16475_timeouts),
687 .name = "adis16475-1",
688 .num_channels = ARRAY_SIZE(adis16475_channels),
689 .channels = adis16475_channels,
691 .gyro_max_scale = IIO_RAD_TO_DEGREE(160 << 16),
693 .accel_max_scale = IIO_M_S_2_TO_G(4000 << 16),
697 .sync = adis16475_sync_mode,
698 .num_sync = ARRAY_SIZE(adis16475_sync_mode),
699 .adis_data = ADIS16475_DATA(16475, &adis16475_timeouts),
702 .name = "adis16475-2",
703 .num_channels = ARRAY_SIZE(adis16475_channels),
704 .channels = adis16475_channels,
706 .gyro_max_scale = IIO_RAD_TO_DEGREE(40 << 16),
708 .accel_max_scale = IIO_M_S_2_TO_G(4000 << 16),
712 .sync = adis16475_sync_mode,
713 .num_sync = ARRAY_SIZE(adis16475_sync_mode),
714 .adis_data = ADIS16475_DATA(16475, &adis16475_timeouts),
717 .name = "adis16475-3",
718 .num_channels = ARRAY_SIZE(adis16475_channels),
719 .channels = adis16475_channels,
721 .gyro_max_scale = IIO_RAD_TO_DEGREE(10 << 16),
723 .accel_max_scale = IIO_M_S_2_TO_G(4000 << 16),
727 .sync = adis16475_sync_mode,
728 .num_sync = ARRAY_SIZE(adis16475_sync_mode),
729 .adis_data = ADIS16475_DATA(16475, &adis16475_timeouts),
732 .name = "adis16477-1",
733 .num_channels = ARRAY_SIZE(adis16475_channels),
734 .channels = adis16475_channels,
736 .gyro_max_scale = IIO_RAD_TO_DEGREE(160 << 16),
738 .accel_max_scale = IIO_M_S_2_TO_G(800 << 16),
742 .sync = adis16475_sync_mode,
743 .num_sync = ARRAY_SIZE(adis16475_sync_mode),
744 .adis_data = ADIS16475_DATA(16477, &adis16475_timeouts),
747 .name = "adis16477-2",
748 .num_channels = ARRAY_SIZE(adis16475_channels),
749 .channels = adis16475_channels,
751 .gyro_max_scale = IIO_RAD_TO_DEGREE(40 << 16),
753 .accel_max_scale = IIO_M_S_2_TO_G(800 << 16),
757 .sync = adis16475_sync_mode,
758 .num_sync = ARRAY_SIZE(adis16475_sync_mode),
759 .adis_data = ADIS16475_DATA(16477, &adis16475_timeouts),
762 .name = "adis16477-3",
763 .num_channels = ARRAY_SIZE(adis16475_channels),
764 .channels = adis16475_channels,
766 .gyro_max_scale = IIO_RAD_TO_DEGREE(10 << 16),
768 .accel_max_scale = IIO_M_S_2_TO_G(800 << 16),
772 .sync = adis16475_sync_mode,
773 .num_sync = ARRAY_SIZE(adis16475_sync_mode),
774 .adis_data = ADIS16475_DATA(16477, &adis16475_timeouts),
777 .name = "adis16465-1",
778 .num_channels = ARRAY_SIZE(adis16475_channels),
779 .channels = adis16475_channels,
781 .gyro_max_scale = IIO_RAD_TO_DEGREE(160 << 16),
783 .accel_max_scale = IIO_M_S_2_TO_G(4000 << 16),
787 .sync = adis16475_sync_mode,
788 .num_sync = ARRAY_SIZE(adis16475_sync_mode),
789 .adis_data = ADIS16475_DATA(16465, &adis16475_timeouts),
792 .name = "adis16465-2",
793 .num_channels = ARRAY_SIZE(adis16475_channels),
794 .channels = adis16475_channels,
796 .gyro_max_scale = IIO_RAD_TO_DEGREE(40 << 16),
798 .accel_max_scale = IIO_M_S_2_TO_G(4000 << 16),
802 .sync = adis16475_sync_mode,
803 .num_sync = ARRAY_SIZE(adis16475_sync_mode),
804 .adis_data = ADIS16475_DATA(16465, &adis16475_timeouts),
807 .name = "adis16465-3",
808 .num_channels = ARRAY_SIZE(adis16475_channels),
809 .channels = adis16475_channels,
811 .gyro_max_scale = IIO_RAD_TO_DEGREE(10 << 16),
813 .accel_max_scale = IIO_M_S_2_TO_G(4000 << 16),
817 .sync = adis16475_sync_mode,
818 .num_sync = ARRAY_SIZE(adis16475_sync_mode),
819 .adis_data = ADIS16475_DATA(16465, &adis16475_timeouts),
822 .name = "adis16467-1",
823 .num_channels = ARRAY_SIZE(adis16475_channels),
824 .channels = adis16475_channels,
826 .gyro_max_scale = IIO_RAD_TO_DEGREE(160 << 16),
828 .accel_max_scale = IIO_M_S_2_TO_G(800 << 16),
832 .sync = adis16475_sync_mode,
833 .num_sync = ARRAY_SIZE(adis16475_sync_mode),
834 .adis_data = ADIS16475_DATA(16467, &adis16475_timeouts),
837 .name = "adis16467-2",
838 .num_channels = ARRAY_SIZE(adis16475_channels),
839 .channels = adis16475_channels,
841 .gyro_max_scale = IIO_RAD_TO_DEGREE(40 << 16),
843 .accel_max_scale = IIO_M_S_2_TO_G(800 << 16),
847 .sync = adis16475_sync_mode,
848 .num_sync = ARRAY_SIZE(adis16475_sync_mode),
849 .adis_data = ADIS16475_DATA(16467, &adis16475_timeouts),
852 .name = "adis16467-3",
853 .num_channels = ARRAY_SIZE(adis16475_channels),
854 .channels = adis16475_channels,
856 .gyro_max_scale = IIO_RAD_TO_DEGREE(10 << 16),
858 .accel_max_scale = IIO_M_S_2_TO_G(800 << 16),
862 .sync = adis16475_sync_mode,
863 .num_sync = ARRAY_SIZE(adis16475_sync_mode),
864 .adis_data = ADIS16475_DATA(16467, &adis16475_timeouts),
868 .num_channels = ARRAY_SIZE(adis16475_channels),
869 .channels = adis16475_channels,
871 .gyro_max_scale = IIO_RAD_TO_DEGREE(10 << 16),
872 .accel_max_val = 392,
873 .accel_max_scale = 32000 << 16,
877 .sync = adis16475_sync_mode,
878 /* pulse sync not supported */
879 .num_sync = ARRAY_SIZE(adis16475_sync_mode) - 1,
881 .adis_data = ADIS16475_DATA(16500, &adis1650x_timeouts),
884 .name = "adis16505-1",
885 .num_channels = ARRAY_SIZE(adis16475_channels),
886 .channels = adis16475_channels,
888 .gyro_max_scale = IIO_RAD_TO_DEGREE(160 << 16),
890 .accel_max_scale = 32000 << 16,
894 .sync = adis16475_sync_mode,
895 /* pulse sync not supported */
896 .num_sync = ARRAY_SIZE(adis16475_sync_mode) - 1,
898 .adis_data = ADIS16475_DATA(16505, &adis1650x_timeouts),
901 .name = "adis16505-2",
902 .num_channels = ARRAY_SIZE(adis16475_channels),
903 .channels = adis16475_channels,
905 .gyro_max_scale = IIO_RAD_TO_DEGREE(40 << 16),
907 .accel_max_scale = 32000 << 16,
911 .sync = adis16475_sync_mode,
912 /* pulse sync not supported */
913 .num_sync = ARRAY_SIZE(adis16475_sync_mode) - 1,
915 .adis_data = ADIS16475_DATA(16505, &adis1650x_timeouts),
918 .name = "adis16505-3",
919 .num_channels = ARRAY_SIZE(adis16475_channels),
920 .channels = adis16475_channels,
922 .gyro_max_scale = IIO_RAD_TO_DEGREE(10 << 16),
924 .accel_max_scale = 32000 << 16,
928 .sync = adis16475_sync_mode,
929 /* pulse sync not supported */
930 .num_sync = ARRAY_SIZE(adis16475_sync_mode) - 1,
932 .adis_data = ADIS16475_DATA(16505, &adis1650x_timeouts),
935 .name = "adis16507-1",
936 .num_channels = ARRAY_SIZE(adis16475_channels),
937 .channels = adis16475_channels,
939 .gyro_max_scale = IIO_RAD_TO_DEGREE(160 << 16),
940 .accel_max_val = 392,
941 .accel_max_scale = 32000 << 16,
945 .sync = adis16475_sync_mode,
946 /* pulse sync not supported */
947 .num_sync = ARRAY_SIZE(adis16475_sync_mode) - 1,
949 .adis_data = ADIS16475_DATA(16507, &adis1650x_timeouts),
952 .name = "adis16507-2",
953 .num_channels = ARRAY_SIZE(adis16475_channels),
954 .channels = adis16475_channels,
956 .gyro_max_scale = IIO_RAD_TO_DEGREE(40 << 16),
957 .accel_max_val = 392,
958 .accel_max_scale = 32000 << 16,
962 .sync = adis16475_sync_mode,
963 /* pulse sync not supported */
964 .num_sync = ARRAY_SIZE(adis16475_sync_mode) - 1,
966 .adis_data = ADIS16475_DATA(16507, &adis1650x_timeouts),
969 .name = "adis16507-3",
970 .num_channels = ARRAY_SIZE(adis16475_channels),
971 .channels = adis16475_channels,
973 .gyro_max_scale = IIO_RAD_TO_DEGREE(10 << 16),
974 .accel_max_val = 392,
975 .accel_max_scale = 32000 << 16,
979 .sync = adis16475_sync_mode,
980 /* pulse sync not supported */
981 .num_sync = ARRAY_SIZE(adis16475_sync_mode) - 1,
983 .adis_data = ADIS16475_DATA(16507, &adis1650x_timeouts),
987 static const struct iio_info adis16475_info = {
988 .read_raw = &adis16475_read_raw,
989 .write_raw = &adis16475_write_raw,
990 .update_scan_mode = adis_update_scan_mode,
991 .debugfs_reg_access = adis_debugfs_reg_access,
994 static bool adis16475_validate_crc(const u8 *buffer, u16 crc,
998 /* extra 6 elements for low gyro and accel */
999 const u16 sz = burst32 ? ADIS16475_BURST32_MAX_DATA :
1000 ADIS16475_BURST_MAX_DATA;
1002 for (i = 0; i < sz - 2; i++)
1008 static void adis16475_burst32_check(struct adis16475 *st)
1011 struct adis *adis = &st->adis;
1013 if (!st->info->has_burst32)
1016 if (st->lsb_flag && !st->burst32) {
1017 const u16 en = ADIS16500_BURST32(1);
1019 ret = __adis_update_bits(&st->adis, ADIS16475_REG_MSG_CTRL,
1020 ADIS16500_BURST32_MASK, en);
1027 * In 32-bit mode we need extra 2 bytes for all gyro
1028 * and accel channels.
1030 adis->burst_extra_len = 6 * sizeof(u16);
1031 adis->xfer[1].len += 6 * sizeof(u16);
1032 dev_dbg(&adis->spi->dev, "Enable burst32 mode, xfer:%d",
1035 } else if (!st->lsb_flag && st->burst32) {
1036 const u16 en = ADIS16500_BURST32(0);
1038 ret = __adis_update_bits(&st->adis, ADIS16475_REG_MSG_CTRL,
1039 ADIS16500_BURST32_MASK, en);
1043 st->burst32 = false;
1045 /* Remove the extra bits */
1046 adis->burst_extra_len = 0;
1047 adis->xfer[1].len -= 6 * sizeof(u16);
1048 dev_dbg(&adis->spi->dev, "Disable burst32 mode, xfer:%d\n",
1053 static irqreturn_t adis16475_trigger_handler(int irq, void *p)
1055 struct iio_poll_func *pf = p;
1056 struct iio_dev *indio_dev = pf->indio_dev;
1057 struct adis16475 *st = iio_priv(indio_dev);
1058 struct adis *adis = &st->adis;
1059 int ret, bit, i = 0;
1063 /* offset until the first element after gyro and accel */
1064 const u8 offset = st->burst32 ? 13 : 7;
1066 ret = spi_sync(adis->spi, &adis->msg);
1070 buffer = adis->buffer;
1072 crc = be16_to_cpu(buffer[offset + 2]);
1073 valid = adis16475_validate_crc(adis->buffer, crc, st->burst32);
1075 dev_err(&adis->spi->dev, "Invalid crc\n");
1079 for_each_set_bit(bit, indio_dev->active_scan_mask,
1080 indio_dev->masklength) {
1082 * When burst mode is used, system flags is the first data
1083 * channel in the sequence, but the scan index is 7.
1086 case ADIS16475_SCAN_TEMP:
1087 st->data[i++] = buffer[offset];
1089 case ADIS16475_SCAN_GYRO_X ... ADIS16475_SCAN_ACCEL_Z:
1091 * The first 2 bytes on the received data are the
1092 * DIAG_STAT reg, hence the +1 offset here...
1096 st->data[i++] = buffer[bit * 2 + 2];
1098 st->data[i++] = buffer[bit * 2 + 1];
1100 st->data[i++] = buffer[bit + 1];
1102 * Don't bother in doing the manual read if the
1103 * device supports burst32. burst32 will be
1104 * enabled in the next call to
1105 * adis16475_burst32_check()...
1107 if (st->lsb_flag && !st->info->has_burst32) {
1109 const u32 reg = ADIS16475_REG_X_GYRO_L +
1112 adis_read_reg_16(adis, reg, &val);
1113 st->data[i++] = cpu_to_be16(val);
1115 /* lower not used */
1123 iio_push_to_buffers_with_timestamp(indio_dev, st->data, pf->timestamp);
1126 * We only check the burst mode at the end of the current capture since
1127 * it takes a full data ready cycle for the device to update the burst
1130 adis16475_burst32_check(st);
1131 iio_trigger_notify_done(indio_dev->trig);
1136 static void adis16475_disable_clk(void *data)
1138 clk_disable_unprepare((struct clk *)data);
1141 static int adis16475_config_sync_mode(struct adis16475 *st)
1144 struct device *dev = &st->adis.spi->dev;
1145 const struct adis16475_sync *sync;
1148 /* default to internal clk */
1149 st->clk_freq = st->info->int_clk * 1000;
1151 ret = device_property_read_u32(dev, "adi,sync-mode", &sync_mode);
1155 if (sync_mode >= st->info->num_sync) {
1156 dev_err(dev, "Invalid sync mode: %u for %s\n", sync_mode,
1161 sync = &st->info->sync[sync_mode];
1162 st->sync_mode = sync->sync_mode;
1164 /* All the other modes require external input signal */
1165 if (sync->sync_mode != ADIS16475_SYNC_OUTPUT) {
1166 struct clk *clk = devm_clk_get(dev, NULL);
1169 return PTR_ERR(clk);
1171 ret = clk_prepare_enable(clk);
1175 ret = devm_add_action_or_reset(dev, adis16475_disable_clk, clk);
1179 st->clk_freq = clk_get_rate(clk);
1180 if (st->clk_freq < sync->min_rate ||
1181 st->clk_freq > sync->max_rate) {
1183 "Clk rate:%u not in a valid range:[%u %u]\n",
1184 st->clk_freq, sync->min_rate, sync->max_rate);
1188 if (sync->sync_mode == ADIS16475_SYNC_SCALED) {
1192 * In sync scaled mode, the IMU sample rate is the clk_freq * sync_scale.
1193 * Hence, default the IMU sample rate to the highest multiple of the input
1194 * clock lower than the IMU max sample rate. The optimal range is
1197 up_scale = 2100 / st->clk_freq;
1199 ret = __adis_write_reg_16(&st->adis,
1200 ADIS16475_REG_UP_SCALE,
1206 st->clk_freq *= 1000;
1209 * Keep in mind that the mask for the clk modes in adis1650*
1210 * chips is different (1100 instead of 11100). However, we
1211 * are not configuring BIT(4) in these chips and the default
1212 * value is 0, so we are fine in doing the below operations.
1213 * I'm keeping this for simplicity and avoiding extra variables
1216 ret = __adis_update_bits(&st->adis, ADIS16475_REG_MSG_CTRL,
1217 ADIS16475_SYNC_MODE_MASK, sync->sync_mode);
1221 usleep_range(250, 260);
1226 static int adis16475_config_irq_pin(struct adis16475 *st)
1229 struct irq_data *desc;
1233 struct spi_device *spi = st->adis.spi;
1235 desc = irq_get_irq_data(spi->irq);
1237 dev_err(&spi->dev, "Could not find IRQ %d\n", spi->irq);
1241 * It is possible to configure the data ready polarity. Furthermore, we
1242 * need to update the adis struct if we want data ready as active low.
1244 irq_type = irqd_get_trigger_type(desc);
1245 if (irq_type == IRQ_TYPE_EDGE_RISING) {
1247 st->adis.irq_flag = IRQF_TRIGGER_RISING;
1248 } else if (irq_type == IRQ_TYPE_EDGE_FALLING) {
1250 st->adis.irq_flag = IRQF_TRIGGER_FALLING;
1252 dev_err(&spi->dev, "Invalid interrupt type 0x%x specified\n",
1257 /* We cannot mask the interrupt so ensure it's not enabled at request */
1258 st->adis.irq_flag |= IRQF_NO_AUTOEN;
1260 val = ADIS16475_MSG_CTRL_DR_POL(polarity);
1261 ret = __adis_update_bits(&st->adis, ADIS16475_REG_MSG_CTRL,
1262 ADIS16475_MSG_CTRL_DR_POL_MASK, val);
1266 * There is a delay writing to any bits written to the MSC_CTRL
1267 * register. It should not be bigger than 200us, so 250 should be more
1270 usleep_range(250, 260);
1275 static const struct of_device_id adis16475_of_match[] = {
1276 { .compatible = "adi,adis16470",
1277 .data = &adis16475_chip_info[ADIS16470] },
1278 { .compatible = "adi,adis16475-1",
1279 .data = &adis16475_chip_info[ADIS16475_1] },
1280 { .compatible = "adi,adis16475-2",
1281 .data = &adis16475_chip_info[ADIS16475_2] },
1282 { .compatible = "adi,adis16475-3",
1283 .data = &adis16475_chip_info[ADIS16475_3] },
1284 { .compatible = "adi,adis16477-1",
1285 .data = &adis16475_chip_info[ADIS16477_1] },
1286 { .compatible = "adi,adis16477-2",
1287 .data = &adis16475_chip_info[ADIS16477_2] },
1288 { .compatible = "adi,adis16477-3",
1289 .data = &adis16475_chip_info[ADIS16477_3] },
1290 { .compatible = "adi,adis16465-1",
1291 .data = &adis16475_chip_info[ADIS16465_1] },
1292 { .compatible = "adi,adis16465-2",
1293 .data = &adis16475_chip_info[ADIS16465_2] },
1294 { .compatible = "adi,adis16465-3",
1295 .data = &adis16475_chip_info[ADIS16465_3] },
1296 { .compatible = "adi,adis16467-1",
1297 .data = &adis16475_chip_info[ADIS16467_1] },
1298 { .compatible = "adi,adis16467-2",
1299 .data = &adis16475_chip_info[ADIS16467_2] },
1300 { .compatible = "adi,adis16467-3",
1301 .data = &adis16475_chip_info[ADIS16467_3] },
1302 { .compatible = "adi,adis16500",
1303 .data = &adis16475_chip_info[ADIS16500] },
1304 { .compatible = "adi,adis16505-1",
1305 .data = &adis16475_chip_info[ADIS16505_1] },
1306 { .compatible = "adi,adis16505-2",
1307 .data = &adis16475_chip_info[ADIS16505_2] },
1308 { .compatible = "adi,adis16505-3",
1309 .data = &adis16475_chip_info[ADIS16505_3] },
1310 { .compatible = "adi,adis16507-1",
1311 .data = &adis16475_chip_info[ADIS16507_1] },
1312 { .compatible = "adi,adis16507-2",
1313 .data = &adis16475_chip_info[ADIS16507_2] },
1314 { .compatible = "adi,adis16507-3",
1315 .data = &adis16475_chip_info[ADIS16507_3] },
1318 MODULE_DEVICE_TABLE(of, adis16475_of_match);
1320 static int adis16475_probe(struct spi_device *spi)
1322 struct iio_dev *indio_dev;
1323 struct adis16475 *st;
1326 indio_dev = devm_iio_device_alloc(&spi->dev, sizeof(*st));
1330 st = iio_priv(indio_dev);
1332 st->info = device_get_match_data(&spi->dev);
1336 ret = adis_init(&st->adis, indio_dev, spi, &st->info->adis_data);
1340 indio_dev->name = st->info->name;
1341 indio_dev->channels = st->info->channels;
1342 indio_dev->num_channels = st->info->num_channels;
1343 indio_dev->info = &adis16475_info;
1344 indio_dev->modes = INDIO_DIRECT_MODE;
1346 ret = __adis_initial_startup(&st->adis);
1350 ret = adis16475_config_irq_pin(st);
1354 ret = adis16475_config_sync_mode(st);
1358 ret = devm_adis_setup_buffer_and_trigger(&st->adis, indio_dev,
1359 adis16475_trigger_handler);
1363 ret = devm_iio_device_register(&spi->dev, indio_dev);
1367 adis16475_debugfs_init(indio_dev);
1372 static struct spi_driver adis16475_driver = {
1374 .name = "adis16475",
1375 .of_match_table = adis16475_of_match,
1377 .probe = adis16475_probe,
1379 module_spi_driver(adis16475_driver);
1382 MODULE_DESCRIPTION("Analog Devices ADIS16475 IMU driver");
1383 MODULE_LICENSE("GPL");