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/device.h>
10 #include <linux/kernel.h>
11 #include <linux/spi/spi.h>
12 #include <linux/sysfs.h>
13 #include <linux/module.h>
15 #include <linux/iio/iio.h>
16 #include <linux/iio/sysfs.h>
17 #include <linux/iio/imu/adis.h>
19 #include <linux/debugfs.h>
21 #define ADIS16136_REG_FLASH_CNT 0x00
22 #define ADIS16136_REG_TEMP_OUT 0x02
23 #define ADIS16136_REG_GYRO_OUT2 0x04
24 #define ADIS16136_REG_GYRO_OUT 0x06
25 #define ADIS16136_REG_GYRO_OFF2 0x08
26 #define ADIS16136_REG_GYRO_OFF 0x0A
27 #define ADIS16136_REG_ALM_MAG1 0x10
28 #define ADIS16136_REG_ALM_MAG2 0x12
29 #define ADIS16136_REG_ALM_SAMPL1 0x14
30 #define ADIS16136_REG_ALM_SAMPL2 0x16
31 #define ADIS16136_REG_ALM_CTRL 0x18
32 #define ADIS16136_REG_GPIO_CTRL 0x1A
33 #define ADIS16136_REG_MSC_CTRL 0x1C
34 #define ADIS16136_REG_SMPL_PRD 0x1E
35 #define ADIS16136_REG_AVG_CNT 0x20
36 #define ADIS16136_REG_DEC_RATE 0x22
37 #define ADIS16136_REG_SLP_CTRL 0x24
38 #define ADIS16136_REG_DIAG_STAT 0x26
39 #define ADIS16136_REG_GLOB_CMD 0x28
40 #define ADIS16136_REG_LOT1 0x32
41 #define ADIS16136_REG_LOT2 0x34
42 #define ADIS16136_REG_LOT3 0x36
43 #define ADIS16136_REG_PROD_ID 0x38
44 #define ADIS16136_REG_SERIAL_NUM 0x3A
46 #define ADIS16136_DIAG_STAT_FLASH_UPDATE_FAIL 2
47 #define ADIS16136_DIAG_STAT_SPI_FAIL 3
48 #define ADIS16136_DIAG_STAT_SELF_TEST_FAIL 5
49 #define ADIS16136_DIAG_STAT_FLASH_CHKSUM_FAIL 6
51 #define ADIS16136_MSC_CTRL_MEMORY_TEST BIT(11)
52 #define ADIS16136_MSC_CTRL_SELF_TEST BIT(10)
54 struct adis16136_chip_info
{
55 unsigned int precision
;
56 unsigned int fullscale
;
57 const struct adis_data adis_data
;
61 const struct adis16136_chip_info
*chip_info
;
66 #ifdef CONFIG_DEBUG_FS
68 static ssize_t
adis16136_show_serial(struct file
*file
,
69 char __user
*userbuf
, size_t count
, loff_t
*ppos
)
71 struct adis16136
*adis16136
= file
->private_data
;
72 uint16_t lot1
, lot2
, lot3
, serial
;
77 ret
= adis_read_reg_16(&adis16136
->adis
, ADIS16136_REG_SERIAL_NUM
,
82 ret
= adis_read_reg_16(&adis16136
->adis
, ADIS16136_REG_LOT1
, &lot1
);
86 ret
= adis_read_reg_16(&adis16136
->adis
, ADIS16136_REG_LOT2
, &lot2
);
90 ret
= adis_read_reg_16(&adis16136
->adis
, ADIS16136_REG_LOT3
, &lot3
);
94 len
= snprintf(buf
, sizeof(buf
), "%.4x%.4x%.4x-%.4x\n", lot1
, lot2
,
97 return simple_read_from_buffer(userbuf
, count
, ppos
, buf
, len
);
100 static const struct file_operations adis16136_serial_fops
= {
102 .read
= adis16136_show_serial
,
103 .llseek
= default_llseek
,
104 .owner
= THIS_MODULE
,
107 static int adis16136_show_product_id(void *arg
, u64
*val
)
109 struct adis16136
*adis16136
= arg
;
113 ret
= adis_read_reg_16(&adis16136
->adis
, ADIS16136_REG_PROD_ID
,
122 DEFINE_DEBUGFS_ATTRIBUTE(adis16136_product_id_fops
,
123 adis16136_show_product_id
, NULL
, "%llu\n");
125 static int adis16136_show_flash_count(void *arg
, u64
*val
)
127 struct adis16136
*adis16136
= arg
;
128 uint16_t flash_count
;
131 ret
= adis_read_reg_16(&adis16136
->adis
, ADIS16136_REG_FLASH_CNT
,
140 DEFINE_DEBUGFS_ATTRIBUTE(adis16136_flash_count_fops
,
141 adis16136_show_flash_count
, NULL
, "%lld\n");
143 static int adis16136_debugfs_init(struct iio_dev
*indio_dev
)
145 struct adis16136
*adis16136
= iio_priv(indio_dev
);
146 struct dentry
*d
= iio_get_debugfs_dentry(indio_dev
);
148 debugfs_create_file_unsafe("serial_number", 0400,
149 d
, adis16136
, &adis16136_serial_fops
);
150 debugfs_create_file_unsafe("product_id", 0400,
151 d
, adis16136
, &adis16136_product_id_fops
);
152 debugfs_create_file_unsafe("flash_count", 0400,
153 d
, adis16136
, &adis16136_flash_count_fops
);
160 static int adis16136_debugfs_init(struct iio_dev
*indio_dev
)
167 static int adis16136_set_freq(struct adis16136
*adis16136
, unsigned int freq
)
179 return adis_write_reg_16(&adis16136
->adis
, ADIS16136_REG_SMPL_PRD
, t
);
182 static int __adis16136_get_freq(struct adis16136
*adis16136
, unsigned int *freq
)
187 ret
= __adis_read_reg_16(&adis16136
->adis
, ADIS16136_REG_SMPL_PRD
, &t
);
191 *freq
= 32768 / (t
+ 1);
196 static ssize_t
adis16136_write_frequency(struct device
*dev
,
197 struct device_attribute
*attr
, const char *buf
, size_t len
)
199 struct iio_dev
*indio_dev
= dev_to_iio_dev(dev
);
200 struct adis16136
*adis16136
= iio_priv(indio_dev
);
204 ret
= kstrtouint(buf
, 10, &val
);
211 ret
= adis16136_set_freq(adis16136
, val
);
213 return ret
? ret
: len
;
216 static ssize_t
adis16136_read_frequency(struct device
*dev
,
217 struct device_attribute
*attr
, char *buf
)
219 struct iio_dev
*indio_dev
= dev_to_iio_dev(dev
);
220 struct adis16136
*adis16136
= iio_priv(indio_dev
);
224 adis_dev_auto_lock(&adis16136
->adis
);
225 ret
= __adis16136_get_freq(adis16136
, &freq
);
229 return sysfs_emit(buf
, "%d\n", freq
);
232 static IIO_DEV_ATTR_SAMP_FREQ(S_IWUSR
| S_IRUGO
,
233 adis16136_read_frequency
,
234 adis16136_write_frequency
);
236 static const unsigned adis16136_3db_divisors
[] = {
237 [0] = 2, /* Special case */
244 [7] = 200, /* Not a valid setting */
247 static int adis16136_set_filter(struct iio_dev
*indio_dev
, int val
)
249 struct adis16136
*adis16136
= iio_priv(indio_dev
);
253 adis_dev_auto_lock(&adis16136
->adis
);
254 ret
= __adis16136_get_freq(adis16136
, &freq
);
258 for (i
= ARRAY_SIZE(adis16136_3db_divisors
) - 1; i
>= 1; i
--) {
259 if (freq
/ adis16136_3db_divisors
[i
] >= val
)
263 return __adis_write_reg_16(&adis16136
->adis
, ADIS16136_REG_AVG_CNT
, i
);
266 static int adis16136_get_filter(struct iio_dev
*indio_dev
, int *val
)
268 struct adis16136
*adis16136
= iio_priv(indio_dev
);
273 adis_dev_auto_lock(&adis16136
->adis
);
275 ret
= __adis_read_reg_16(&adis16136
->adis
, ADIS16136_REG_AVG_CNT
,
280 ret
= __adis16136_get_freq(adis16136
, &freq
);
284 *val
= freq
/ adis16136_3db_divisors
[val16
& 0x07];
289 static int adis16136_read_raw(struct iio_dev
*indio_dev
,
290 const struct iio_chan_spec
*chan
, int *val
, int *val2
, long info
)
292 struct adis16136
*adis16136
= iio_priv(indio_dev
);
297 case IIO_CHAN_INFO_RAW
:
298 return adis_single_conversion(indio_dev
, chan
, 0, val
);
299 case IIO_CHAN_INFO_SCALE
:
300 switch (chan
->type
) {
302 *val
= adis16136
->chip_info
->precision
;
303 *val2
= (adis16136
->chip_info
->fullscale
<< 16);
304 return IIO_VAL_FRACTIONAL
;
307 *val2
= 697000; /* 0.010697 degree Celsius */
308 return IIO_VAL_INT_PLUS_MICRO
;
312 case IIO_CHAN_INFO_CALIBBIAS
:
313 ret
= adis_read_reg_32(&adis16136
->adis
,
314 ADIS16136_REG_GYRO_OFF2
, &val32
);
318 *val
= sign_extend32(val32
, 31);
321 case IIO_CHAN_INFO_LOW_PASS_FILTER_3DB_FREQUENCY
:
322 return adis16136_get_filter(indio_dev
, val
);
328 static int adis16136_write_raw(struct iio_dev
*indio_dev
,
329 const struct iio_chan_spec
*chan
, int val
, int val2
, long info
)
331 struct adis16136
*adis16136
= iio_priv(indio_dev
);
334 case IIO_CHAN_INFO_CALIBBIAS
:
335 return adis_write_reg_32(&adis16136
->adis
,
336 ADIS16136_REG_GYRO_OFF2
, val
);
337 case IIO_CHAN_INFO_LOW_PASS_FILTER_3DB_FREQUENCY
:
338 return adis16136_set_filter(indio_dev
, val
);
351 static const struct iio_chan_spec adis16136_channels
[] = {
353 .type
= IIO_ANGL_VEL
,
355 .channel2
= IIO_MOD_X
,
356 .info_mask_separate
= BIT(IIO_CHAN_INFO_RAW
) |
357 BIT(IIO_CHAN_INFO_CALIBBIAS
) |
358 BIT(IIO_CHAN_INFO_LOW_PASS_FILTER_3DB_FREQUENCY
),
359 .info_mask_shared_by_type
= BIT(IIO_CHAN_INFO_SCALE
),
361 .address
= ADIS16136_REG_GYRO_OUT2
,
362 .scan_index
= ADIS16136_SCAN_GYRO
,
367 .endianness
= IIO_BE
,
373 .info_mask_separate
= BIT(IIO_CHAN_INFO_RAW
) |
374 BIT(IIO_CHAN_INFO_SCALE
),
375 .address
= ADIS16136_REG_TEMP_OUT
,
376 .scan_index
= ADIS16136_SCAN_TEMP
,
381 .endianness
= IIO_BE
,
384 IIO_CHAN_SOFT_TIMESTAMP(2),
387 static struct attribute
*adis16136_attributes
[] = {
388 &iio_dev_attr_sampling_frequency
.dev_attr
.attr
,
392 static const struct attribute_group adis16136_attribute_group
= {
393 .attrs
= adis16136_attributes
,
396 static const struct iio_info adis16136_info
= {
397 .attrs
= &adis16136_attribute_group
,
398 .read_raw
= &adis16136_read_raw
,
399 .write_raw
= &adis16136_write_raw
,
400 .update_scan_mode
= adis_update_scan_mode
,
401 .debugfs_reg_access
= adis_debugfs_reg_access
,
404 static int adis16136_stop_device(struct iio_dev
*indio_dev
)
406 struct adis16136
*adis16136
= iio_priv(indio_dev
);
409 ret
= adis_write_reg_16(&adis16136
->adis
, ADIS16136_REG_SLP_CTRL
, 0xff);
411 dev_err(&indio_dev
->dev
,
412 "Could not power down device: %d\n", ret
);
417 static int adis16136_initial_setup(struct iio_dev
*indio_dev
)
419 struct adis16136
*adis16136
= iio_priv(indio_dev
);
420 unsigned int device_id
;
424 ret
= __adis_initial_startup(&adis16136
->adis
);
428 ret
= adis_read_reg_16(&adis16136
->adis
, ADIS16136_REG_PROD_ID
,
433 ret
= sscanf(indio_dev
->name
, "adis%u\n", &device_id
);
437 if (prod_id
!= device_id
)
438 dev_warn(&indio_dev
->dev
, "Device ID(%u) and product ID(%u) do not match.",
444 static const char * const adis16136_status_error_msgs
[] = {
445 [ADIS16136_DIAG_STAT_FLASH_UPDATE_FAIL
] = "Flash update failed",
446 [ADIS16136_DIAG_STAT_SPI_FAIL
] = "SPI failure",
447 [ADIS16136_DIAG_STAT_SELF_TEST_FAIL
] = "Self test error",
448 [ADIS16136_DIAG_STAT_FLASH_CHKSUM_FAIL
] = "Flash checksum error",
451 #define ADIS16136_DATA(_timeouts) \
453 .diag_stat_reg = ADIS16136_REG_DIAG_STAT, \
454 .glob_cmd_reg = ADIS16136_REG_GLOB_CMD, \
455 .msc_ctrl_reg = ADIS16136_REG_MSC_CTRL, \
456 .self_test_reg = ADIS16136_REG_MSC_CTRL, \
457 .self_test_mask = ADIS16136_MSC_CTRL_SELF_TEST, \
460 .status_error_msgs = adis16136_status_error_msgs, \
461 .status_error_mask = BIT(ADIS16136_DIAG_STAT_FLASH_UPDATE_FAIL) | \
462 BIT(ADIS16136_DIAG_STAT_SPI_FAIL) | \
463 BIT(ADIS16136_DIAG_STAT_SELF_TEST_FAIL) | \
464 BIT(ADIS16136_DIAG_STAT_FLASH_CHKSUM_FAIL), \
465 .timeouts = (_timeouts), \
475 static const struct adis_timeout adis16133_timeouts
= {
481 static const struct adis_timeout adis16136_timeouts
= {
487 static const struct adis16136_chip_info adis16136_chip_info
[] = {
489 .precision
= IIO_DEGREE_TO_RAD(1200),
491 .adis_data
= ADIS16136_DATA(&adis16133_timeouts
),
494 .precision
= IIO_DEGREE_TO_RAD(300),
496 .adis_data
= ADIS16136_DATA(&adis16133_timeouts
),
499 .precision
= IIO_DEGREE_TO_RAD(450),
501 .adis_data
= ADIS16136_DATA(&adis16136_timeouts
),
504 .precision
= IIO_DEGREE_TO_RAD(1000),
506 .adis_data
= ADIS16136_DATA(&adis16136_timeouts
),
510 static void adis16136_stop(void *data
)
512 adis16136_stop_device(data
);
515 static int adis16136_probe(struct spi_device
*spi
)
517 const struct spi_device_id
*id
= spi_get_device_id(spi
);
518 struct adis16136
*adis16136
;
519 struct iio_dev
*indio_dev
;
520 const struct adis_data
*adis16136_data
;
523 indio_dev
= devm_iio_device_alloc(&spi
->dev
, sizeof(*adis16136
));
524 if (indio_dev
== NULL
)
527 spi_set_drvdata(spi
, indio_dev
);
529 adis16136
= iio_priv(indio_dev
);
531 adis16136
->chip_info
= &adis16136_chip_info
[id
->driver_data
];
532 indio_dev
->name
= spi_get_device_id(spi
)->name
;
533 indio_dev
->channels
= adis16136_channels
;
534 indio_dev
->num_channels
= ARRAY_SIZE(adis16136_channels
);
535 indio_dev
->info
= &adis16136_info
;
536 indio_dev
->modes
= INDIO_DIRECT_MODE
;
538 adis16136_data
= &adis16136
->chip_info
->adis_data
;
540 ret
= adis_init(&adis16136
->adis
, indio_dev
, spi
, adis16136_data
);
544 ret
= devm_adis_setup_buffer_and_trigger(&adis16136
->adis
, indio_dev
, NULL
);
548 ret
= adis16136_initial_setup(indio_dev
);
552 ret
= devm_add_action_or_reset(&spi
->dev
, adis16136_stop
, indio_dev
);
556 ret
= devm_iio_device_register(&spi
->dev
, indio_dev
);
560 adis16136_debugfs_init(indio_dev
);
565 static const struct spi_device_id adis16136_ids
[] = {
566 { "adis16133", ID_ADIS16133
},
567 { "adis16135", ID_ADIS16135
},
568 { "adis16136", ID_ADIS16136
},
569 { "adis16137", ID_ADIS16137
},
572 MODULE_DEVICE_TABLE(spi
, adis16136_ids
);
574 static struct spi_driver adis16136_driver
= {
578 .id_table
= adis16136_ids
,
579 .probe
= adis16136_probe
,
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");
586 MODULE_IMPORT_NS(IIO_ADISLIB
);