IIO: Move core headers to include/linux/iio
[deliverable/linux.git] / drivers / staging / iio / resolver / ad2s90.c
CommitLineData
f46d9f15
GY
1/*
2 * ad2s90.c simple support for the ADI Resolver to Digital Converters: AD2S90
3 *
4 * Copyright (c) 2010-2010 Analog Devices Inc.
5 *
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.
9 *
10 */
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>
99c97852 17#include <linux/module.h>
f46d9f15 18
06458e27
JC
19#include <linux/iio/iio.h>
20#include <linux/iio/sysfs.h>
f46d9f15 21
f46d9f15
GY
22struct ad2s90_state {
23 struct mutex lock;
f46d9f15 24 struct spi_device *sdev;
58f08b0a 25 u8 rx[2] ____cacheline_aligned;
f46d9f15
GY
26};
27
199d847a
JC
28static int ad2s90_read_raw(struct iio_dev *indio_dev,
29 struct iio_chan_spec const *chan,
30 int *val,
31 int *val2,
32 long m)
f46d9f15 33{
f46d9f15 34 int ret;
199d847a 35 struct ad2s90_state *st = iio_priv(indio_dev);
f46d9f15 36
f46d9f15 37 mutex_lock(&st->lock);
58f08b0a 38 ret = spi_read(st->sdev, st->rx, 2);
f46d9f15
GY
39 if (ret)
40 goto error_ret;
199d847a
JC
41 *val = (((u16)(st->rx[0])) << 4) | ((st->rx[1] & 0xF0) >> 4);
42
f46d9f15
GY
43error_ret:
44 mutex_unlock(&st->lock);
45
199d847a 46 return IIO_VAL_INT;
f46d9f15
GY
47}
48
6fe8135f 49static const struct iio_info ad2s90_info = {
199d847a 50 .read_raw = &ad2s90_read_raw,
6fe8135f
JC
51 .driver_module = THIS_MODULE,
52};
53
199d847a
JC
54static const struct iio_chan_spec ad2s90_chan = {
55 .type = IIO_ANGL,
56 .indexed = 1,
57 .channel = 0,
62465770 58 .info_mask = IIO_CHAN_INFO_RAW_SEPARATE_BIT,
199d847a
JC
59};
60
f46d9f15
GY
61static int __devinit ad2s90_probe(struct spi_device *spi)
62{
58f08b0a 63 struct iio_dev *indio_dev;
f46d9f15
GY
64 struct ad2s90_state *st;
65 int ret = 0;
66
58f08b0a
JC
67 indio_dev = iio_allocate_device(sizeof(*st));
68 if (indio_dev == NULL) {
f46d9f15
GY
69 ret = -ENOMEM;
70 goto error_ret;
71 }
58f08b0a
JC
72 st = iio_priv(indio_dev);
73 spi_set_drvdata(spi, indio_dev);
f46d9f15
GY
74
75 mutex_init(&st->lock);
76 st->sdev = spi;
58f08b0a
JC
77 indio_dev->dev.parent = &spi->dev;
78 indio_dev->info = &ad2s90_info;
79 indio_dev->modes = INDIO_DIRECT_MODE;
199d847a
JC
80 indio_dev->channels = &ad2s90_chan;
81 indio_dev->num_channels = 1;
19147f5b 82 indio_dev->name = spi_get_device_id(spi)->name;
f46d9f15 83
72a86ccd 84 ret = iio_device_register(indio_dev);
f46d9f15
GY
85 if (ret)
86 goto error_free_dev;
87
88 /* need 600ns between CS and the first falling edge of SCLK */
89 spi->max_speed_hz = 830000;
90 spi->mode = SPI_MODE_3;
91 spi_setup(spi);
92
93 return 0;
94
95error_free_dev:
72a86ccd 96 iio_free_device(indio_dev);
f46d9f15
GY
97error_ret:
98 return ret;
99}
100
101static int __devexit ad2s90_remove(struct spi_device *spi)
102{
58f08b0a 103 iio_device_unregister(spi_get_drvdata(spi));
d2fffd6c 104 iio_free_device(spi_get_drvdata(spi));
f46d9f15
GY
105
106 return 0;
107}
108
19147f5b
JC
109static const struct spi_device_id ad2s90_id[] = {
110 { "ad2s90" },
111 {}
112};
55e4390c 113MODULE_DEVICE_TABLE(spi, ad2s90_id);
19147f5b 114
f46d9f15
GY
115static struct spi_driver ad2s90_driver = {
116 .driver = {
19147f5b 117 .name = "ad2s90",
f46d9f15
GY
118 .owner = THIS_MODULE,
119 },
120 .probe = ad2s90_probe,
121 .remove = __devexit_p(ad2s90_remove),
19147f5b 122 .id_table = ad2s90_id,
f46d9f15 123};
ae6ae6fe 124module_spi_driver(ad2s90_driver);
f46d9f15
GY
125
126MODULE_AUTHOR("Graff Yang <graff.yang@gmail.com>");
127MODULE_DESCRIPTION("Analog Devices AD2S90 Resolver to Digital SPI driver");
128MODULE_LICENSE("GPL v2");
This page took 0.160137 seconds and 5 git commands to generate.