1 // SPDX-License-Identifier: GPL-2.0+
5 * Copyright 2019 Analog Devices Inc.
8 #include <linux/delay.h>
9 #include <linux/module.h>
10 #include <linux/spi/spi.h>
12 #include <linux/iio/iio.h>
13 #include <linux/iio/imu/adis.h>
15 #include <linux/debugfs.h>
17 #define ADIS16460_REG_FLASH_CNT 0x00
18 #define ADIS16460_REG_DIAG_STAT 0x02
19 #define ADIS16460_REG_X_GYRO_LOW 0x04
20 #define ADIS16460_REG_X_GYRO_OUT 0x06
21 #define ADIS16460_REG_Y_GYRO_LOW 0x08
22 #define ADIS16460_REG_Y_GYRO_OUT 0x0A
23 #define ADIS16460_REG_Z_GYRO_LOW 0x0C
24 #define ADIS16460_REG_Z_GYRO_OUT 0x0E
25 #define ADIS16460_REG_X_ACCL_LOW 0x10
26 #define ADIS16460_REG_X_ACCL_OUT 0x12
27 #define ADIS16460_REG_Y_ACCL_LOW 0x14
28 #define ADIS16460_REG_Y_ACCL_OUT 0x16
29 #define ADIS16460_REG_Z_ACCL_LOW 0x18
30 #define ADIS16460_REG_Z_ACCL_OUT 0x1A
31 #define ADIS16460_REG_SMPL_CNTR 0x1C
32 #define ADIS16460_REG_TEMP_OUT 0x1E
33 #define ADIS16460_REG_X_DELT_ANG 0x24
34 #define ADIS16460_REG_Y_DELT_ANG 0x26
35 #define ADIS16460_REG_Z_DELT_ANG 0x28
36 #define ADIS16460_REG_X_DELT_VEL 0x2A
37 #define ADIS16460_REG_Y_DELT_VEL 0x2C
38 #define ADIS16460_REG_Z_DELT_VEL 0x2E
39 #define ADIS16460_REG_MSC_CTRL 0x32
40 #define ADIS16460_REG_SYNC_SCAL 0x34
41 #define ADIS16460_REG_DEC_RATE 0x36
42 #define ADIS16460_REG_FLTR_CTRL 0x38
43 #define ADIS16460_REG_GLOB_CMD 0x3E
44 #define ADIS16460_REG_X_GYRO_OFF 0x40
45 #define ADIS16460_REG_Y_GYRO_OFF 0x42
46 #define ADIS16460_REG_Z_GYRO_OFF 0x44
47 #define ADIS16460_REG_X_ACCL_OFF 0x46
48 #define ADIS16460_REG_Y_ACCL_OFF 0x48
49 #define ADIS16460_REG_Z_ACCL_OFF 0x4A
50 #define ADIS16460_REG_LOT_ID1 0x52
51 #define ADIS16460_REG_LOT_ID2 0x54
52 #define ADIS16460_REG_PROD_ID 0x56
53 #define ADIS16460_REG_SERIAL_NUM 0x58
54 #define ADIS16460_REG_CAL_SGNTR 0x60
55 #define ADIS16460_REG_CAL_CRC 0x62
56 #define ADIS16460_REG_CODE_SGNTR 0x64
57 #define ADIS16460_REG_CODE_CRC 0x66
59 struct adis16460_chip_info
{
60 unsigned int num_channels
;
61 const struct iio_chan_spec
*channels
;
62 unsigned int gyro_max_val
;
63 unsigned int gyro_max_scale
;
64 unsigned int accel_max_val
;
65 unsigned int accel_max_scale
;
69 const struct adis16460_chip_info
*chip_info
;
73 #ifdef CONFIG_DEBUG_FS
75 static int adis16460_show_serial_number(void *arg
, u64
*val
)
77 struct adis16460
*adis16460
= arg
;
81 ret
= adis_read_reg_16(&adis16460
->adis
, ADIS16460_REG_SERIAL_NUM
,
90 DEFINE_SIMPLE_ATTRIBUTE(adis16460_serial_number_fops
,
91 adis16460_show_serial_number
, NULL
, "0x%.4llx\n");
93 static int adis16460_show_product_id(void *arg
, u64
*val
)
95 struct adis16460
*adis16460
= arg
;
99 ret
= adis_read_reg_16(&adis16460
->adis
, ADIS16460_REG_PROD_ID
,
108 DEFINE_SIMPLE_ATTRIBUTE(adis16460_product_id_fops
,
109 adis16460_show_product_id
, NULL
, "%llu\n");
111 static int adis16460_show_flash_count(void *arg
, u64
*val
)
113 struct adis16460
*adis16460
= arg
;
117 ret
= adis_read_reg_32(&adis16460
->adis
, ADIS16460_REG_FLASH_CNT
,
126 DEFINE_SIMPLE_ATTRIBUTE(adis16460_flash_count_fops
,
127 adis16460_show_flash_count
, NULL
, "%lld\n");
129 static int adis16460_debugfs_init(struct iio_dev
*indio_dev
)
131 struct adis16460
*adis16460
= iio_priv(indio_dev
);
133 debugfs_create_file("serial_number", 0400, indio_dev
->debugfs_dentry
,
134 adis16460
, &adis16460_serial_number_fops
);
135 debugfs_create_file("product_id", 0400, indio_dev
->debugfs_dentry
,
136 adis16460
, &adis16460_product_id_fops
);
137 debugfs_create_file("flash_count", 0400, indio_dev
->debugfs_dentry
,
138 adis16460
, &adis16460_flash_count_fops
);
145 static int adis16460_debugfs_init(struct iio_dev
*indio_dev
)
152 static int adis16460_set_freq(struct iio_dev
*indio_dev
, int val
, int val2
)
154 struct adis16460
*st
= iio_priv(indio_dev
);
157 t
= val
* 1000 + val2
/ 1000;
168 return adis_write_reg_16(&st
->adis
, ADIS16460_REG_DEC_RATE
, t
);
171 static int adis16460_get_freq(struct iio_dev
*indio_dev
, int *val
, int *val2
)
173 struct adis16460
*st
= iio_priv(indio_dev
);
178 ret
= adis_read_reg_16(&st
->adis
, ADIS16460_REG_DEC_RATE
, &t
);
182 freq
= 2048000 / (t
+ 1);
184 *val2
= (freq
% 1000) * 1000;
186 return IIO_VAL_INT_PLUS_MICRO
;
189 static int adis16460_read_raw(struct iio_dev
*indio_dev
,
190 const struct iio_chan_spec
*chan
, int *val
, int *val2
, long info
)
192 struct adis16460
*st
= iio_priv(indio_dev
);
195 case IIO_CHAN_INFO_RAW
:
196 return adis_single_conversion(indio_dev
, chan
, 0, val
);
197 case IIO_CHAN_INFO_SCALE
:
198 switch (chan
->type
) {
200 *val
= st
->chip_info
->gyro_max_scale
;
201 *val2
= st
->chip_info
->gyro_max_val
;
202 return IIO_VAL_FRACTIONAL
;
204 *val
= st
->chip_info
->accel_max_scale
;
205 *val2
= st
->chip_info
->accel_max_val
;
206 return IIO_VAL_FRACTIONAL
;
208 *val
= 50; /* 50 milli degrees Celsius/LSB */
213 case IIO_CHAN_INFO_OFFSET
:
214 *val
= 500; /* 25 degrees Celsius = 0x0000 */
216 case IIO_CHAN_INFO_SAMP_FREQ
:
217 return adis16460_get_freq(indio_dev
, val
, val2
);
223 static int adis16460_write_raw(struct iio_dev
*indio_dev
,
224 const struct iio_chan_spec
*chan
, int val
, int val2
, long info
)
227 case IIO_CHAN_INFO_SAMP_FREQ
:
228 return adis16460_set_freq(indio_dev
, val
, val2
);
235 ADIS16460_SCAN_GYRO_X
,
236 ADIS16460_SCAN_GYRO_Y
,
237 ADIS16460_SCAN_GYRO_Z
,
238 ADIS16460_SCAN_ACCEL_X
,
239 ADIS16460_SCAN_ACCEL_Y
,
240 ADIS16460_SCAN_ACCEL_Z
,
244 #define ADIS16460_MOD_CHANNEL(_type, _mod, _address, _si, _bits) \
248 .channel2 = (_mod), \
249 .info_mask_separate = BIT(IIO_CHAN_INFO_RAW), \
250 .info_mask_shared_by_type = BIT(IIO_CHAN_INFO_SCALE), \
251 .info_mask_shared_by_all = BIT(IIO_CHAN_INFO_SAMP_FREQ), \
252 .address = (_address), \
253 .scan_index = (_si), \
256 .realbits = (_bits), \
257 .storagebits = (_bits), \
258 .endianness = IIO_BE, \
262 #define ADIS16460_GYRO_CHANNEL(_mod) \
263 ADIS16460_MOD_CHANNEL(IIO_ANGL_VEL, IIO_MOD_ ## _mod, \
264 ADIS16460_REG_ ## _mod ## _GYRO_LOW, ADIS16460_SCAN_GYRO_ ## _mod, \
267 #define ADIS16460_ACCEL_CHANNEL(_mod) \
268 ADIS16460_MOD_CHANNEL(IIO_ACCEL, IIO_MOD_ ## _mod, \
269 ADIS16460_REG_ ## _mod ## _ACCL_LOW, ADIS16460_SCAN_ACCEL_ ## _mod, \
272 #define ADIS16460_TEMP_CHANNEL() { \
276 .info_mask_separate = BIT(IIO_CHAN_INFO_RAW) | \
277 BIT(IIO_CHAN_INFO_SCALE) | \
278 BIT(IIO_CHAN_INFO_OFFSET), \
279 .info_mask_shared_by_all = BIT(IIO_CHAN_INFO_SAMP_FREQ), \
280 .address = ADIS16460_REG_TEMP_OUT, \
281 .scan_index = ADIS16460_SCAN_TEMP, \
286 .endianness = IIO_BE, \
290 static const struct iio_chan_spec adis16460_channels
[] = {
291 ADIS16460_GYRO_CHANNEL(X
),
292 ADIS16460_GYRO_CHANNEL(Y
),
293 ADIS16460_GYRO_CHANNEL(Z
),
294 ADIS16460_ACCEL_CHANNEL(X
),
295 ADIS16460_ACCEL_CHANNEL(Y
),
296 ADIS16460_ACCEL_CHANNEL(Z
),
297 ADIS16460_TEMP_CHANNEL(),
298 IIO_CHAN_SOFT_TIMESTAMP(7)
301 static const struct adis16460_chip_info adis16460_chip_info
= {
302 .channels
= adis16460_channels
,
303 .num_channels
= ARRAY_SIZE(adis16460_channels
),
305 * storing the value in rad/degree and the scale in degree
306 * gives us the result in rad and better precession than
307 * storing the scale directly in rad.
309 .gyro_max_val
= IIO_RAD_TO_DEGREE(200 << 16),
311 .accel_max_val
= IIO_M_S_2_TO_G(20000 << 16),
312 .accel_max_scale
= 5,
315 static const struct iio_info adis16460_info
= {
316 .read_raw
= &adis16460_read_raw
,
317 .write_raw
= &adis16460_write_raw
,
318 .update_scan_mode
= adis_update_scan_mode
,
319 .debugfs_reg_access
= adis_debugfs_reg_access
,
322 static int adis16460_enable_irq(struct adis
*adis
, bool enable
)
325 * There is no way to gate the data-ready signal internally inside the
329 enable_irq(adis
->spi
->irq
);
331 disable_irq(adis
->spi
->irq
);
336 #define ADIS16460_DIAG_STAT_IN_CLK_OOS 7
337 #define ADIS16460_DIAG_STAT_FLASH_MEM 6
338 #define ADIS16460_DIAG_STAT_SELF_TEST 5
339 #define ADIS16460_DIAG_STAT_OVERRANGE 4
340 #define ADIS16460_DIAG_STAT_SPI_COMM 3
341 #define ADIS16460_DIAG_STAT_FLASH_UPT 2
343 static const char * const adis16460_status_error_msgs
[] = {
344 [ADIS16460_DIAG_STAT_IN_CLK_OOS
] = "Input clock out of sync",
345 [ADIS16460_DIAG_STAT_FLASH_MEM
] = "Flash memory failure",
346 [ADIS16460_DIAG_STAT_SELF_TEST
] = "Self test diagnostic failure",
347 [ADIS16460_DIAG_STAT_OVERRANGE
] = "Sensor overrange",
348 [ADIS16460_DIAG_STAT_SPI_COMM
] = "SPI communication failure",
349 [ADIS16460_DIAG_STAT_FLASH_UPT
] = "Flash update failure",
352 static const struct adis_timeout adis16460_timeouts
= {
358 static const struct adis_data adis16460_data
= {
359 .diag_stat_reg
= ADIS16460_REG_DIAG_STAT
,
360 .glob_cmd_reg
= ADIS16460_REG_GLOB_CMD
,
361 .prod_id_reg
= ADIS16460_REG_PROD_ID
,
363 .self_test_mask
= BIT(2),
364 .self_test_reg
= ADIS16460_REG_GLOB_CMD
,
368 .cs_change_delay
= 16,
369 .status_error_msgs
= adis16460_status_error_msgs
,
370 .status_error_mask
= BIT(ADIS16460_DIAG_STAT_IN_CLK_OOS
) |
371 BIT(ADIS16460_DIAG_STAT_FLASH_MEM
) |
372 BIT(ADIS16460_DIAG_STAT_SELF_TEST
) |
373 BIT(ADIS16460_DIAG_STAT_OVERRANGE
) |
374 BIT(ADIS16460_DIAG_STAT_SPI_COMM
) |
375 BIT(ADIS16460_DIAG_STAT_FLASH_UPT
),
376 .enable_irq
= adis16460_enable_irq
,
377 .timeouts
= &adis16460_timeouts
,
380 static int adis16460_probe(struct spi_device
*spi
)
382 struct iio_dev
*indio_dev
;
383 struct adis16460
*st
;
386 indio_dev
= devm_iio_device_alloc(&spi
->dev
, sizeof(*st
));
387 if (indio_dev
== NULL
)
390 spi_set_drvdata(spi
, indio_dev
);
392 st
= iio_priv(indio_dev
);
394 st
->chip_info
= &adis16460_chip_info
;
395 indio_dev
->dev
.parent
= &spi
->dev
;
396 indio_dev
->name
= spi_get_device_id(spi
)->name
;
397 indio_dev
->channels
= st
->chip_info
->channels
;
398 indio_dev
->num_channels
= st
->chip_info
->num_channels
;
399 indio_dev
->info
= &adis16460_info
;
400 indio_dev
->modes
= INDIO_DIRECT_MODE
;
402 ret
= adis_init(&st
->adis
, indio_dev
, spi
, &adis16460_data
);
406 ret
= adis_setup_buffer_and_trigger(&st
->adis
, indio_dev
, NULL
);
410 adis16460_enable_irq(&st
->adis
, 0);
412 ret
= __adis_initial_startup(&st
->adis
);
414 goto error_cleanup_buffer
;
416 ret
= iio_device_register(indio_dev
);
418 goto error_cleanup_buffer
;
420 adis16460_debugfs_init(indio_dev
);
424 error_cleanup_buffer
:
425 adis_cleanup_buffer_and_trigger(&st
->adis
, indio_dev
);
429 static int adis16460_remove(struct spi_device
*spi
)
431 struct iio_dev
*indio_dev
= spi_get_drvdata(spi
);
432 struct adis16460
*st
= iio_priv(indio_dev
);
434 iio_device_unregister(indio_dev
);
436 adis_cleanup_buffer_and_trigger(&st
->adis
, indio_dev
);
441 static const struct spi_device_id adis16460_ids
[] = {
445 MODULE_DEVICE_TABLE(spi
, adis16460_ids
);
447 static const struct of_device_id adis16460_of_match
[] = {
448 { .compatible
= "adi,adis16460" },
451 MODULE_DEVICE_TABLE(of
, adis16460_of_match
);
453 static struct spi_driver adis16460_driver
= {
456 .of_match_table
= adis16460_of_match
,
458 .id_table
= adis16460_ids
,
459 .probe
= adis16460_probe
,
460 .remove
= adis16460_remove
,
462 module_spi_driver(adis16460_driver
);
464 MODULE_AUTHOR("Dragos Bogdan <dragos.bogdan@analog.com>");
465 MODULE_DESCRIPTION("Analog Devices ADIS16460 IMU driver");
466 MODULE_LICENSE("GPL");