blob: 6d3d771154f3c3b45eaa9c7f667b34749f1e8301 [file] [log] [blame]
Barry Songe071f6b2010-10-27 21:44:04 -04001/*
2 * ADIS16060 Wide Bandwidth Yaw Rate Gyroscope with SPI driver
3 *
4 * Copyright 2010 Analog Devices Inc.
5 *
6 * Licensed under the GPL-2 or later.
7 */
8
Paul Gortmaker45296232011-08-30 17:50:46 -04009#include <linux/module.h>
Barry Songe071f6b2010-10-27 21:44:04 -040010#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>
Jonathan Cameron14f98322011-02-28 12:33:42 +000017
Jonathan Cameron06458e22012-04-25 15:54:58 +010018#include <linux/iio/iio.h>
19#include <linux/iio/sysfs.h>
Barry Songe071f6b2010-10-27 21:44:04 -040020
Jonathan Cameron14f98322011-02-28 12:33:42 +000021#define ADIS16060_GYRO 0x20 /* Measure Angular Rate (Gyro) */
22#define ADIS16060_TEMP_OUT 0x10 /* Measure Temperature */
23#define ADIS16060_AIN2 0x80 /* Measure AIN2 */
24#define ADIS16060_AIN1 0x40 /* Measure AIN1 */
25
26/**
27 * struct adis16060_state - device instance specific data
28 * @us_w: actual spi_device to write config
29 * @us_r: actual spi_device to read back data
Lucas De Marchi25985ed2011-03-30 22:57:33 -030030 * @buf: transmit or receive buffer
Jonathan Cameron14f98322011-02-28 12:33:42 +000031 * @buf_lock: mutex to protect tx and rx
32 **/
33struct adis16060_state {
34 struct spi_device *us_w;
35 struct spi_device *us_r;
Jonathan Cameron14f98322011-02-28 12:33:42 +000036 struct mutex buf_lock;
37
38 u8 buf[3] ____cacheline_aligned;
39};
Barry Songe071f6b2010-10-27 21:44:04 -040040
Jonathan Cameron3a5952f2011-06-27 13:07:43 +010041static struct iio_dev *adis16060_iio_dev;
Barry Songe071f6b2010-10-27 21:44:04 -040042
Jonathan Cameron4f2ca082011-08-12 17:48:00 +010043static int adis16060_spi_write(struct iio_dev *indio_dev, u8 val)
Barry Songe071f6b2010-10-27 21:44:04 -040044{
45 int ret;
Jonathan Cameron3a5952f2011-06-27 13:07:43 +010046 struct adis16060_state *st = iio_priv(indio_dev);
Barry Songe071f6b2010-10-27 21:44:04 -040047
48 mutex_lock(&st->buf_lock);
Jonathan Cameron14f98322011-02-28 12:33:42 +000049 st->buf[2] = val; /* The last 8 bits clocked in are latched */
50 ret = spi_write(st->us_w, st->buf, 3);
Barry Songe071f6b2010-10-27 21:44:04 -040051 mutex_unlock(&st->buf_lock);
52
53 return ret;
54}
55
Jonathan Cameron4f2ca082011-08-12 17:48:00 +010056static int adis16060_spi_read(struct iio_dev *indio_dev, u16 *val)
Barry Songe071f6b2010-10-27 21:44:04 -040057{
58 int ret;
Jonathan Cameron3a5952f2011-06-27 13:07:43 +010059 struct adis16060_state *st = iio_priv(indio_dev);
Barry Songe071f6b2010-10-27 21:44:04 -040060
61 mutex_lock(&st->buf_lock);
62
Jonathan Cameron14f98322011-02-28 12:33:42 +000063 ret = spi_read(st->us_r, st->buf, 3);
Barry Songe071f6b2010-10-27 21:44:04 -040064
Jonathan Camerond14ae852011-02-11 14:20:00 +000065 /* The internal successive approximation ADC begins the
66 * conversion process on the falling edge of MSEL1 and
67 * starts to place data MSB first on the DOUT line at
68 * the 6th falling edge of SCLK
Barry Songe071f6b2010-10-27 21:44:04 -040069 */
70 if (ret == 0)
Jonathan Cameron14f98322011-02-28 12:33:42 +000071 *val = ((st->buf[0] & 0x3) << 12) |
72 (st->buf[1] << 4) |
73 ((st->buf[2] >> 4) & 0xF);
Barry Songe071f6b2010-10-27 21:44:04 -040074 mutex_unlock(&st->buf_lock);
75
76 return ret;
77}
78
Jonathan Cameron4f2ca082011-08-12 17:48:00 +010079static int adis16060_read_raw(struct iio_dev *indio_dev,
80 struct iio_chan_spec const *chan,
81 int *val, int *val2,
82 long mask)
Barry Songe071f6b2010-10-27 21:44:04 -040083{
Jonathan Cameron4f2ca082011-08-12 17:48:00 +010084 u16 tval = 0;
85 int ret;
Barry Songe071f6b2010-10-27 21:44:04 -040086
Jonathan Cameron4f2ca082011-08-12 17:48:00 +010087 switch (mask) {
Jonathan Cameronfbaff212012-04-15 17:41:20 +010088 case IIO_CHAN_INFO_RAW:
Jonathan Cameron4f2ca082011-08-12 17:48:00 +010089 /* Take the iio_dev status lock */
90 mutex_lock(&indio_dev->mlock);
91 ret = adis16060_spi_write(indio_dev, chan->address);
92 if (ret < 0) {
93 mutex_unlock(&indio_dev->mlock);
94 return ret;
95 }
96 ret = adis16060_spi_read(indio_dev, &tval);
97 mutex_unlock(&indio_dev->mlock);
98 *val = tval;
99 return IIO_VAL_INT;
Jonathan Cameronc8a9f802011-10-26 17:41:36 +0100100 case IIO_CHAN_INFO_OFFSET:
Jonathan Cameron4f2ca082011-08-12 17:48:00 +0100101 *val = -7;
102 *val2 = 461117;
103 return IIO_VAL_INT_PLUS_MICRO;
Jonathan Cameronc8a9f802011-10-26 17:41:36 +0100104 case IIO_CHAN_INFO_SCALE:
Jonathan Cameron4f2ca082011-08-12 17:48:00 +0100105 *val = 0;
106 *val2 = 34000;
107 return IIO_VAL_INT_PLUS_MICRO;
108 }
Jonathan Cameron14f98322011-02-28 12:33:42 +0000109
Jonathan Cameron4f2ca082011-08-12 17:48:00 +0100110 return -EINVAL;
Barry Songe071f6b2010-10-27 21:44:04 -0400111}
112
Jonathan Cameron6fe81352011-05-18 14:42:37 +0100113static const struct iio_info adis16060_info = {
Jonathan Cameron4f2ca082011-08-12 17:48:00 +0100114 .read_raw = &adis16060_read_raw,
Jonathan Cameron6fe81352011-05-18 14:42:37 +0100115 .driver_module = THIS_MODULE,
116};
117
Jonathan Cameron4f2ca082011-08-12 17:48:00 +0100118static const struct iio_chan_spec adis16060_channels[] = {
119 {
Jonathan Cameron41ea0402011-10-05 15:27:59 +0100120 .type = IIO_ANGL_VEL,
Jonathan Cameron4f2ca082011-08-12 17:48:00 +0100121 .modified = 1,
122 .channel2 = IIO_MOD_Z,
Jonathan Cameroncdcb0ea2013-02-27 19:38:43 +0000123 .info_mask_separate = BIT(IIO_CHAN_INFO_RAW),
Jonathan Cameron4f2ca082011-08-12 17:48:00 +0100124 .address = ADIS16060_GYRO,
125 }, {
Jonathan Cameron6835cb62011-09-27 09:56:41 +0100126 .type = IIO_VOLTAGE,
Jonathan Cameron4f2ca082011-08-12 17:48:00 +0100127 .indexed = 1,
128 .channel = 0,
Jonathan Cameroncdcb0ea2013-02-27 19:38:43 +0000129 .info_mask_separate = BIT(IIO_CHAN_INFO_RAW),
Jonathan Cameron4f2ca082011-08-12 17:48:00 +0100130 .address = ADIS16060_AIN1,
131 }, {
Jonathan Cameron6835cb62011-09-27 09:56:41 +0100132 .type = IIO_VOLTAGE,
Jonathan Cameron4f2ca082011-08-12 17:48:00 +0100133 .indexed = 1,
134 .channel = 1,
Jonathan Cameroncdcb0ea2013-02-27 19:38:43 +0000135 .info_mask_separate = BIT(IIO_CHAN_INFO_RAW),
Jonathan Cameron4f2ca082011-08-12 17:48:00 +0100136 .address = ADIS16060_AIN2,
137 }, {
138 .type = IIO_TEMP,
139 .indexed = 1,
140 .channel = 0,
Jonathan Cameroncdcb0ea2013-02-27 19:38:43 +0000141 .info_mask_separate = BIT(IIO_CHAN_INFO_RAW) |
142 BIT(IIO_CHAN_INFO_OFFSET) | BIT(IIO_CHAN_INFO_SCALE),
Jonathan Cameron4f2ca082011-08-12 17:48:00 +0100143 .address = ADIS16060_TEMP_OUT,
144 }
145};
146
Bill Pemberton4ae1c612012-11-19 13:21:57 -0500147static int adis16060_r_probe(struct spi_device *spi)
Barry Songe071f6b2010-10-27 21:44:04 -0400148{
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100149 int ret;
Jonathan Cameron3a5952f2011-06-27 13:07:43 +0100150 struct adis16060_state *st;
151 struct iio_dev *indio_dev;
152
153 /* setup the industrialio driver allocated elements */
Sachin Kamat1f5ac522013-08-13 07:34:00 +0100154 indio_dev = devm_iio_device_alloc(&spi->dev, sizeof(*st));
155 if (!indio_dev)
156 return -ENOMEM;
Barry Songe071f6b2010-10-27 21:44:04 -0400157 /* this is only used for removal purposes */
Jonathan Cameron3a5952f2011-06-27 13:07:43 +0100158 spi_set_drvdata(spi, indio_dev);
159 st = iio_priv(indio_dev);
Barry Songe071f6b2010-10-27 21:44:04 -0400160 st->us_r = spi;
161 mutex_init(&st->buf_lock);
Barry Songe071f6b2010-10-27 21:44:04 -0400162
Jonathan Cameron4f2ca082011-08-12 17:48:00 +0100163 indio_dev->name = spi->dev.driver->name;
Jonathan Cameron3a5952f2011-06-27 13:07:43 +0100164 indio_dev->dev.parent = &spi->dev;
165 indio_dev->info = &adis16060_info;
166 indio_dev->modes = INDIO_DIRECT_MODE;
Jonathan Cameron4f2ca082011-08-12 17:48:00 +0100167 indio_dev->channels = adis16060_channels;
168 indio_dev->num_channels = ARRAY_SIZE(adis16060_channels);
Barry Songe071f6b2010-10-27 21:44:04 -0400169
Jonathan Cameron3a5952f2011-06-27 13:07:43 +0100170 ret = iio_device_register(indio_dev);
Barry Songe071f6b2010-10-27 21:44:04 -0400171 if (ret)
Sachin Kamat1f5ac522013-08-13 07:34:00 +0100172 return ret;
Barry Songe071f6b2010-10-27 21:44:04 -0400173
Jonathan Cameron3a5952f2011-06-27 13:07:43 +0100174 adis16060_iio_dev = indio_dev;
Barry Songe071f6b2010-10-27 21:44:04 -0400175 return 0;
Barry Songe071f6b2010-10-27 21:44:04 -0400176}
177
178/* fixme, confirm ordering in this function */
Bill Pemberton447d4f22012-11-19 13:26:37 -0500179static int adis16060_r_remove(struct spi_device *spi)
Barry Songe071f6b2010-10-27 21:44:04 -0400180{
Jonathan Cameron3a5952f2011-06-27 13:07:43 +0100181 iio_device_unregister(spi_get_drvdata(spi));
Barry Songe071f6b2010-10-27 21:44:04 -0400182 return 0;
183}
184
Bill Pemberton4ae1c612012-11-19 13:21:57 -0500185static int adis16060_w_probe(struct spi_device *spi)
Barry Songe071f6b2010-10-27 21:44:04 -0400186{
187 int ret;
Jonathan Cameron3a5952f2011-06-27 13:07:43 +0100188 struct iio_dev *indio_dev = adis16060_iio_dev;
189 struct adis16060_state *st;
190 if (!indio_dev) {
Barry Songe071f6b2010-10-27 21:44:04 -0400191 ret = -ENODEV;
192 goto error_ret;
193 }
Jonathan Cameron3a5952f2011-06-27 13:07:43 +0100194 st = iio_priv(indio_dev);
195 spi_set_drvdata(spi, indio_dev);
Barry Songe071f6b2010-10-27 21:44:04 -0400196 st->us_w = spi;
197 return 0;
198
199error_ret:
200 return ret;
201}
202
Bill Pemberton447d4f22012-11-19 13:26:37 -0500203static int adis16060_w_remove(struct spi_device *spi)
Barry Songe071f6b2010-10-27 21:44:04 -0400204{
205 return 0;
206}
207
208static struct spi_driver adis16060_r_driver = {
209 .driver = {
210 .name = "adis16060_r",
211 .owner = THIS_MODULE,
212 },
213 .probe = adis16060_r_probe,
Bill Pembertone543acf2012-11-19 13:21:38 -0500214 .remove = adis16060_r_remove,
Barry Songe071f6b2010-10-27 21:44:04 -0400215};
216
217static struct spi_driver adis16060_w_driver = {
218 .driver = {
219 .name = "adis16060_w",
220 .owner = THIS_MODULE,
221 },
222 .probe = adis16060_w_probe,
Bill Pembertone543acf2012-11-19 13:21:38 -0500223 .remove = adis16060_w_remove,
Barry Songe071f6b2010-10-27 21:44:04 -0400224};
225
226static __init int adis16060_init(void)
227{
228 int ret;
229
230 ret = spi_register_driver(&adis16060_r_driver);
231 if (ret < 0)
232 return ret;
233
234 ret = spi_register_driver(&adis16060_w_driver);
235 if (ret < 0) {
236 spi_unregister_driver(&adis16060_r_driver);
237 return ret;
238 }
239
240 return 0;
241}
242module_init(adis16060_init);
243
244static __exit void adis16060_exit(void)
245{
246 spi_unregister_driver(&adis16060_w_driver);
247 spi_unregister_driver(&adis16060_r_driver);
248}
249module_exit(adis16060_exit);
250
251MODULE_AUTHOR("Barry Song <21cnbao@gmail.com>");
Jonathan Camerond14ae852011-02-11 14:20:00 +0000252MODULE_DESCRIPTION("Analog Devices ADIS16060 Yaw Rate Gyroscope Driver");
Barry Songe071f6b2010-10-27 21:44:04 -0400253MODULE_LICENSE("GPL v2");