1 // SPDX-License-Identifier: GPL-2.0-only
3 * ADIS16133/ADIS16135/ADIS16136 gyroscope driver
5 * Copyright 2012 Analog Devices Inc.
6 * Author: Lars-Peter Clausen <lars@metafoo.de>
9 #include <linux/interrupt.h>
10 #include <linux/delay.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>
19 #include <linux/iio/iio.h>
20 #include <linux/iio/sysfs.h>
21 #include <linux/iio/buffer.h>
22 #include <linux/iio/imu/adis.h>
24 #include <linux/debugfs.h>
26 #define ADIS16136_REG_FLASH_CNT 0x00
27 #define ADIS16136_REG_TEMP_OUT 0x02
28 #define ADIS16136_REG_GYRO_OUT2 0x04
29 #define ADIS16136_REG_GYRO_OUT 0x06
30 #define ADIS16136_REG_GYRO_OFF2 0x08
31 #define ADIS16136_REG_GYRO_OFF 0x0A
32 #define ADIS16136_REG_ALM_MAG1 0x10
33 #define ADIS16136_REG_ALM_MAG2 0x12
34 #define ADIS16136_REG_ALM_SAMPL1 0x14
35 #define ADIS16136_REG_ALM_SAMPL2 0x16
36 #define ADIS16136_REG_ALM_CTRL 0x18
37 #define ADIS16136_REG_GPIO_CTRL 0x1A
38 #define ADIS16136_REG_MSC_CTRL 0x1C
39 #define ADIS16136_REG_SMPL_PRD 0x1E
40 #define ADIS16136_REG_AVG_CNT 0x20
41 #define ADIS16136_REG_DEC_RATE 0x22
42 #define ADIS16136_REG_SLP_CTRL 0x24
43 #define ADIS16136_REG_DIAG_STAT 0x26
44 #define ADIS16136_REG_GLOB_CMD 0x28
45 #define ADIS16136_REG_LOT1 0x32
46 #define ADIS16136_REG_LOT2 0x34
47 #define ADIS16136_REG_LOT3 0x36
48 #define ADIS16136_REG_PROD_ID 0x38
49 #define ADIS16136_REG_SERIAL_NUM 0x3A
51 #define ADIS16136_DIAG_STAT_FLASH_UPDATE_FAIL 2
52 #define ADIS16136_DIAG_STAT_SPI_FAIL 3
53 #define ADIS16136_DIAG_STAT_SELF_TEST_FAIL 5
54 #define ADIS16136_DIAG_STAT_FLASH_CHKSUM_FAIL 6
56 #define ADIS16136_MSC_CTRL_MEMORY_TEST BIT(11)
57 #define ADIS16136_MSC_CTRL_SELF_TEST BIT(10)
59 struct adis16136_chip_info
{
60 unsigned int precision
;
61 unsigned int fullscale
;
65 const struct adis16136_chip_info
*chip_info
;
70 #ifdef CONFIG_DEBUG_FS
72 static ssize_t
adis16136_show_serial(struct file
*file
,
73 char __user
*userbuf
, size_t count
, loff_t
*ppos
)
75 struct adis16136
*adis16136
= file
->private_data
;
76 uint16_t lot1
, lot2
, lot3
, serial
;
81 ret
= adis_read_reg_16(&adis16136
->adis
, ADIS16136_REG_SERIAL_NUM
,
86 ret
= adis_read_reg_16(&adis16136
->adis
, ADIS16136_REG_LOT1
, &lot1
);
90 ret
= adis_read_reg_16(&adis16136
->adis
, ADIS16136_REG_LOT2
, &lot2
);
94 ret
= adis_read_reg_16(&adis16136
->adis
, ADIS16136_REG_LOT3
, &lot3
);
98 len
= snprintf(buf
, sizeof(buf
), "%.4x%.4x%.4x-%.4x\n", lot1
, lot2
,
101 return simple_read_from_buffer(userbuf
, count
, ppos
, buf
, len
);
104 static const struct file_operations adis16136_serial_fops
= {
106 .read
= adis16136_show_serial
,
107 .llseek
= default_llseek
,
108 .owner
= THIS_MODULE
,
111 static int adis16136_show_product_id(void *arg
, u64
*val
)
113 struct adis16136
*adis16136
= arg
;
117 ret
= adis_read_reg_16(&adis16136
->adis
, ADIS16136_REG_PROD_ID
,
126 DEFINE_DEBUGFS_ATTRIBUTE(adis16136_product_id_fops
,
127 adis16136_show_product_id
, NULL
, "%llu\n");
129 static int adis16136_show_flash_count(void *arg
, u64
*val
)
131 struct adis16136
*adis16136
= arg
;
132 uint16_t flash_count
;
135 ret
= adis_read_reg_16(&adis16136
->adis
, ADIS16136_REG_FLASH_CNT
,
144 DEFINE_DEBUGFS_ATTRIBUTE(adis16136_flash_count_fops
,
145 adis16136_show_flash_count
, NULL
, "%lld\n");
147 static int adis16136_debugfs_init(struct iio_dev
*indio_dev
)
149 struct adis16136
*adis16136
= iio_priv(indio_dev
);
151 debugfs_create_file_unsafe("serial_number", 0400,
152 indio_dev
->debugfs_dentry
, adis16136
,
153 &adis16136_serial_fops
);
154 debugfs_create_file_unsafe("product_id", 0400,
155 indio_dev
->debugfs_dentry
,
156 adis16136
, &adis16136_product_id_fops
);
157 debugfs_create_file_unsafe("flash_count", 0400,
158 indio_dev
->debugfs_dentry
,
159 adis16136
, &adis16136_flash_count_fops
);
166 static int adis16136_debugfs_init(struct iio_dev
*indio_dev
)
173 static int adis16136_set_freq(struct adis16136
*adis16136
, unsigned int freq
)
185 return adis_write_reg_16(&adis16136
->adis
, ADIS16136_REG_SMPL_PRD
, t
);
188 static int adis16136_get_freq(struct adis16136
*adis16136
, unsigned int *freq
)
193 ret
= adis_read_reg_16(&adis16136
->adis
, ADIS16136_REG_SMPL_PRD
, &t
);
197 *freq
= 32768 / (t
+ 1);
202 static ssize_t
adis16136_write_frequency(struct device
*dev
,
203 struct device_attribute
*attr
, const char *buf
, size_t len
)
205 struct iio_dev
*indio_dev
= dev_to_iio_dev(dev
);
206 struct adis16136
*adis16136
= iio_priv(indio_dev
);
210 ret
= kstrtouint(buf
, 10, &val
);
217 ret
= adis16136_set_freq(adis16136
, val
);
219 return ret
? ret
: len
;
222 static ssize_t
adis16136_read_frequency(struct device
*dev
,
223 struct device_attribute
*attr
, char *buf
)
225 struct iio_dev
*indio_dev
= dev_to_iio_dev(dev
);
226 struct adis16136
*adis16136
= iio_priv(indio_dev
);
230 ret
= adis16136_get_freq(adis16136
, &freq
);
234 return sprintf(buf
, "%d\n", freq
);
237 static IIO_DEV_ATTR_SAMP_FREQ(S_IWUSR
| S_IRUGO
,
238 adis16136_read_frequency
,
239 adis16136_write_frequency
);
241 static const unsigned adis16136_3db_divisors
[] = {
242 [0] = 2, /* Special case */
249 [7] = 200, /* Not a valid setting */
252 static int adis16136_set_filter(struct iio_dev
*indio_dev
, int val
)
254 struct adis16136
*adis16136
= iio_priv(indio_dev
);
258 ret
= adis16136_get_freq(adis16136
, &freq
);
262 for (i
= ARRAY_SIZE(adis16136_3db_divisors
) - 1; i
>= 1; i
--) {
263 if (freq
/ adis16136_3db_divisors
[i
] >= val
)
267 return adis_write_reg_16(&adis16136
->adis
, ADIS16136_REG_AVG_CNT
, i
);
270 static int adis16136_get_filter(struct iio_dev
*indio_dev
, int *val
)
272 struct adis16136
*adis16136
= iio_priv(indio_dev
);
277 mutex_lock(&indio_dev
->mlock
);
279 ret
= adis_read_reg_16(&adis16136
->adis
, ADIS16136_REG_AVG_CNT
, &val16
);
283 ret
= adis16136_get_freq(adis16136
, &freq
);
287 *val
= freq
/ adis16136_3db_divisors
[val16
& 0x07];
290 mutex_unlock(&indio_dev
->mlock
);
292 return ret
? ret
: IIO_VAL_INT
;
295 static int adis16136_read_raw(struct iio_dev
*indio_dev
,
296 const struct iio_chan_spec
*chan
, int *val
, int *val2
, long info
)
298 struct adis16136
*adis16136
= iio_priv(indio_dev
);
303 case IIO_CHAN_INFO_RAW
:
304 return adis_single_conversion(indio_dev
, chan
, 0, val
);
305 case IIO_CHAN_INFO_SCALE
:
306 switch (chan
->type
) {
308 *val
= adis16136
->chip_info
->precision
;
309 *val2
= (adis16136
->chip_info
->fullscale
<< 16);
310 return IIO_VAL_FRACTIONAL
;
313 *val2
= 697000; /* 0.010697 degree Celsius */
314 return IIO_VAL_INT_PLUS_MICRO
;
318 case IIO_CHAN_INFO_CALIBBIAS
:
319 ret
= adis_read_reg_32(&adis16136
->adis
,
320 ADIS16136_REG_GYRO_OFF2
, &val32
);
324 *val
= sign_extend32(val32
, 31);
327 case IIO_CHAN_INFO_LOW_PASS_FILTER_3DB_FREQUENCY
:
328 return adis16136_get_filter(indio_dev
, val
);
334 static int adis16136_write_raw(struct iio_dev
*indio_dev
,
335 const struct iio_chan_spec
*chan
, int val
, int val2
, long info
)
337 struct adis16136
*adis16136
= iio_priv(indio_dev
);
340 case IIO_CHAN_INFO_CALIBBIAS
:
341 return adis_write_reg_32(&adis16136
->adis
,
342 ADIS16136_REG_GYRO_OFF2
, val
);
343 case IIO_CHAN_INFO_LOW_PASS_FILTER_3DB_FREQUENCY
:
344 return adis16136_set_filter(indio_dev
, val
);
357 static const struct iio_chan_spec adis16136_channels
[] = {
359 .type
= IIO_ANGL_VEL
,
361 .channel2
= IIO_MOD_X
,
362 .info_mask_separate
= BIT(IIO_CHAN_INFO_RAW
) |
363 BIT(IIO_CHAN_INFO_CALIBBIAS
) |
364 BIT(IIO_CHAN_INFO_LOW_PASS_FILTER_3DB_FREQUENCY
),
365 .info_mask_shared_by_type
= BIT(IIO_CHAN_INFO_SCALE
),
367 .address
= ADIS16136_REG_GYRO_OUT2
,
368 .scan_index
= ADIS16136_SCAN_GYRO
,
373 .endianness
= IIO_BE
,
379 .info_mask_separate
= BIT(IIO_CHAN_INFO_RAW
) |
380 BIT(IIO_CHAN_INFO_SCALE
),
381 .address
= ADIS16136_REG_TEMP_OUT
,
382 .scan_index
= ADIS16136_SCAN_TEMP
,
387 .endianness
= IIO_BE
,
390 IIO_CHAN_SOFT_TIMESTAMP(2),
393 static struct attribute
*adis16136_attributes
[] = {
394 &iio_dev_attr_sampling_frequency
.dev_attr
.attr
,
398 static const struct attribute_group adis16136_attribute_group
= {
399 .attrs
= adis16136_attributes
,
402 static const struct iio_info adis16136_info
= {
403 .attrs
= &adis16136_attribute_group
,
404 .read_raw
= &adis16136_read_raw
,
405 .write_raw
= &adis16136_write_raw
,
406 .update_scan_mode
= adis_update_scan_mode
,
407 .debugfs_reg_access
= adis_debugfs_reg_access
,
410 static int adis16136_stop_device(struct iio_dev
*indio_dev
)
412 struct adis16136
*adis16136
= iio_priv(indio_dev
);
415 ret
= adis_write_reg_16(&adis16136
->adis
, ADIS16136_REG_SLP_CTRL
, 0xff);
417 dev_err(&indio_dev
->dev
,
418 "Could not power down device: %d\n", ret
);
423 static int adis16136_initial_setup(struct iio_dev
*indio_dev
)
425 struct adis16136
*adis16136
= iio_priv(indio_dev
);
426 unsigned int device_id
;
430 ret
= adis_initial_startup(&adis16136
->adis
);
434 ret
= adis_read_reg_16(&adis16136
->adis
, ADIS16136_REG_PROD_ID
,
439 ret
= sscanf(indio_dev
->name
, "adis%u\n", &device_id
);
443 if (prod_id
!= device_id
)
444 dev_warn(&indio_dev
->dev
, "Device ID(%u) and product ID(%u) do not match.",
450 static const char * const adis16136_status_error_msgs
[] = {
451 [ADIS16136_DIAG_STAT_FLASH_UPDATE_FAIL
] = "Flash update failed",
452 [ADIS16136_DIAG_STAT_SPI_FAIL
] = "SPI failure",
453 [ADIS16136_DIAG_STAT_SELF_TEST_FAIL
] = "Self test error",
454 [ADIS16136_DIAG_STAT_FLASH_CHKSUM_FAIL
] = "Flash checksum error",
457 static const struct adis_data adis16136_data
= {
458 .diag_stat_reg
= ADIS16136_REG_DIAG_STAT
,
459 .glob_cmd_reg
= ADIS16136_REG_GLOB_CMD
,
460 .msc_ctrl_reg
= ADIS16136_REG_MSC_CTRL
,
462 .self_test_mask
= ADIS16136_MSC_CTRL_SELF_TEST
,
468 .status_error_msgs
= adis16136_status_error_msgs
,
469 .status_error_mask
= BIT(ADIS16136_DIAG_STAT_FLASH_UPDATE_FAIL
) |
470 BIT(ADIS16136_DIAG_STAT_SPI_FAIL
) |
471 BIT(ADIS16136_DIAG_STAT_SELF_TEST_FAIL
) |
472 BIT(ADIS16136_DIAG_STAT_FLASH_CHKSUM_FAIL
),
482 static const struct adis16136_chip_info adis16136_chip_info
[] = {
484 .precision
= IIO_DEGREE_TO_RAD(1200),
488 .precision
= IIO_DEGREE_TO_RAD(300),
492 .precision
= IIO_DEGREE_TO_RAD(450),
496 .precision
= IIO_DEGREE_TO_RAD(1000),
501 static int adis16136_probe(struct spi_device
*spi
)
503 const struct spi_device_id
*id
= spi_get_device_id(spi
);
504 struct adis16136
*adis16136
;
505 struct iio_dev
*indio_dev
;
508 indio_dev
= devm_iio_device_alloc(&spi
->dev
, sizeof(*adis16136
));
509 if (indio_dev
== NULL
)
512 spi_set_drvdata(spi
, indio_dev
);
514 adis16136
= iio_priv(indio_dev
);
516 adis16136
->chip_info
= &adis16136_chip_info
[id
->driver_data
];
517 indio_dev
->dev
.parent
= &spi
->dev
;
518 indio_dev
->name
= spi_get_device_id(spi
)->name
;
519 indio_dev
->channels
= adis16136_channels
;
520 indio_dev
->num_channels
= ARRAY_SIZE(adis16136_channels
);
521 indio_dev
->info
= &adis16136_info
;
522 indio_dev
->modes
= INDIO_DIRECT_MODE
;
524 ret
= adis_init(&adis16136
->adis
, indio_dev
, spi
, &adis16136_data
);
528 ret
= adis_setup_buffer_and_trigger(&adis16136
->adis
, indio_dev
, NULL
);
532 ret
= adis16136_initial_setup(indio_dev
);
534 goto error_cleanup_buffer
;
536 ret
= iio_device_register(indio_dev
);
538 goto error_stop_device
;
540 adis16136_debugfs_init(indio_dev
);
545 adis16136_stop_device(indio_dev
);
546 error_cleanup_buffer
:
547 adis_cleanup_buffer_and_trigger(&adis16136
->adis
, indio_dev
);
551 static int adis16136_remove(struct spi_device
*spi
)
553 struct iio_dev
*indio_dev
= spi_get_drvdata(spi
);
554 struct adis16136
*adis16136
= iio_priv(indio_dev
);
556 iio_device_unregister(indio_dev
);
557 adis16136_stop_device(indio_dev
);
559 adis_cleanup_buffer_and_trigger(&adis16136
->adis
, indio_dev
);
564 static const struct spi_device_id adis16136_ids
[] = {
565 { "adis16133", ID_ADIS16133
},
566 { "adis16135", ID_ADIS16135
},
567 { "adis16136", ID_ADIS16136
},
568 { "adis16137", ID_ADIS16137
},
571 MODULE_DEVICE_TABLE(spi
, adis16136_ids
);
573 static struct spi_driver adis16136_driver
= {
577 .id_table
= adis16136_ids
,
578 .probe
= adis16136_probe
,
579 .remove
= adis16136_remove
,
581 module_spi_driver(adis16136_driver
);
583 MODULE_AUTHOR("Lars-Peter Clausen <lars@metafoo.de>");
584 MODULE_DESCRIPTION("Analog Devices ADIS16133/ADIS16135/ADIS16136 gyroscope driver");
585 MODULE_LICENSE("GPL v2");