2 * ad2s120x.c simple support for the ADI Resolver to Digital Converters: AD2S1200/1205
4 * Copyright (c) 2010-2010 Analog Devices Inc.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
11 #include <linux/types.h>
12 #include <linux/mutex.h>
13 #include <linux/device.h>
14 #include <linux/spi/spi.h>
15 #include <linux/slab.h>
16 #include <linux/sysfs.h>
17 #include <linux/delay.h>
18 #include <linux/gpio.h>
23 #define DRV_NAME "ad2s120x"
25 /* input pin sample and rdvel is controlled by driver */
28 /* input clock on serial interface */
29 #define AD2S120X_HZ 8192000
30 /* clock period in nano second */
31 #define AD2S120X_TSCLK (1000000000/AD2S120X_HZ)
33 struct ad2s120x_state
{
35 struct spi_device
*sdev
;
38 u8 rx
[2] ____cacheline_aligned
;
41 static ssize_t
ad2s120x_show_val(struct device
*dev
,
42 struct device_attribute
*attr
, char *buf
)
49 struct ad2s120x_state
*st
= iio_priv(dev_get_drvdata(dev
));
50 struct iio_dev_attr
*iattr
= to_iio_dev_attr(attr
);
52 mutex_lock(&st
->lock
);
54 gpio_set_value(st
->sample
, 0);
55 /* delay (6 * AD2S120X_TSCLK + 20) nano seconds */
57 gpio_set_value(st
->sample
, 1);
58 gpio_set_value(st
->rdvel
, iattr
->address
);
59 ret
= spi_read(st
->sdev
, st
->rx
, 2);
64 pos
= (((u16
)(st
->rx
[0])) << 4) | ((st
->rx
[1] & 0xF0) >> 4);
66 vel
= (st
->rx
[0] & 0x80) ? 0xf000 : 0;
67 vel
|= (((s16
)(st
->rx
[0])) << 4) | ((st
->rx
[1] & 0xF0) >> 4);
69 len
= sprintf(buf
, "%d %c%c%c%c ", iattr
->address
? pos
: vel
,
70 (status
& 0x8) ? 'P' : 'V',
71 (status
& 0x4) ? 'd' : '_',
72 (status
& 0x2) ? 'l' : '_',
73 (status
& 0x1) ? '1' : '0');
75 /* delay (2 * AD2S120X_TSCLK + 20) ns for sample pulse */
77 mutex_unlock(&st
->lock
);
79 return ret
? ret
: len
;
82 static IIO_DEVICE_ATTR(pos
, S_IRUGO
, ad2s120x_show_val
, NULL
, 1);
83 static IIO_DEVICE_ATTR(vel
, S_IRUGO
, ad2s120x_show_val
, NULL
, 0);
85 static struct attribute
*ad2s120x_attributes
[] = {
86 &iio_dev_attr_pos
.dev_attr
.attr
,
87 &iio_dev_attr_vel
.dev_attr
.attr
,
91 static const struct attribute_group ad2s120x_attribute_group
= {
92 .attrs
= ad2s120x_attributes
,
95 static const struct iio_info ad2s120x_info
= {
96 .attrs
= &ad2s120x_attribute_group
,
97 .driver_module
= THIS_MODULE
,
100 static int __devinit
ad2s120x_probe(struct spi_device
*spi
)
102 struct ad2s120x_state
*st
;
103 struct iio_dev
*indio_dev
;
105 unsigned short *pins
= spi
->dev
.platform_data
;
107 for (pn
= 0; pn
< AD2S120X_PN
; pn
++)
108 if (gpio_request_one(pins
[pn
], GPIOF_DIR_OUT
, DRV_NAME
)) {
109 pr_err("%s: request gpio pin %d failed\n",
113 indio_dev
= iio_allocate_device(sizeof(*st
));
114 if (indio_dev
== NULL
) {
118 spi_set_drvdata(spi
, indio_dev
);
119 st
= iio_priv(indio_dev
);
120 mutex_init(&st
->lock
);
122 st
->sample
= pins
[0];
125 indio_dev
->dev
.parent
= &spi
->dev
;
126 indio_dev
->info
= &ad2s120x_info
;
127 indio_dev
->modes
= INDIO_DIRECT_MODE
;
129 ret
= iio_device_register(indio_dev
);
133 spi
->max_speed_hz
= AD2S120X_HZ
;
134 spi
->mode
= SPI_MODE_3
;
140 iio_free_device(indio_dev
);
142 for (--pn
; pn
>= 0; pn
--)
147 static int __devexit
ad2s120x_remove(struct spi_device
*spi
)
149 iio_device_unregister(spi_get_drvdata(spi
));
154 static struct spi_driver ad2s120x_driver
= {
157 .owner
= THIS_MODULE
,
159 .probe
= ad2s120x_probe
,
160 .remove
= __devexit_p(ad2s120x_remove
),
163 static __init
int ad2s120x_spi_init(void)
165 return spi_register_driver(&ad2s120x_driver
);
167 module_init(ad2s120x_spi_init
);
169 static __exit
void ad2s120x_spi_exit(void)
171 spi_unregister_driver(&ad2s120x_driver
);
173 module_exit(ad2s120x_spi_exit
);
175 MODULE_AUTHOR("Graff Yang <graff.yang@gmail.com>");
176 MODULE_DESCRIPTION("Analog Devices AD2S1200/1205 Resolver to Digital SPI driver");
177 MODULE_LICENSE("GPL v2");