Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph...
[pandora-kernel.git] / drivers / staging / iio / dds / ad5930.c
1 /*
2  * Driver for ADI Direct Digital Synthesis ad5930
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>
17
18 #include "../iio.h"
19 #include "../sysfs.h"
20
21 #define DRV_NAME "ad5930"
22
23 #define value_mask (u16)0xf000
24 #define addr_shift 12
25
26 /* Register format: 4 bits addr + 12 bits value */
27 struct ad5903_config {
28         u16 control;
29         u16 incnum;
30         u16 frqdelt[2];
31         u16 incitvl;
32         u16 buritvl;
33         u16 strtfrq[2];
34 };
35
36 struct ad5930_state {
37         struct mutex lock;
38         struct iio_dev *idev;
39         struct spi_device *sdev;
40 };
41
42 static ssize_t ad5930_set_parameter(struct device *dev,
43                                         struct device_attribute *attr,
44                                         const char *buf,
45                                         size_t len)
46 {
47         struct spi_message msg;
48         struct spi_transfer xfer;
49         int ret;
50         struct ad5903_config *config = (struct ad5903_config *)buf;
51         struct iio_dev *idev = dev_get_drvdata(dev);
52         struct ad5930_state *st = idev->dev_data;
53
54         config->control = (config->control & ~value_mask);
55         config->incnum = (config->control & ~value_mask) | (1 << addr_shift);
56         config->frqdelt[0] = (config->control & ~value_mask) | (2 << addr_shift);
57         config->frqdelt[1] = (config->control & ~value_mask) | 3 << addr_shift;
58         config->incitvl = (config->control & ~value_mask) | 4 << addr_shift;
59         config->buritvl = (config->control & ~value_mask) | 8 << addr_shift;
60         config->strtfrq[0] = (config->control & ~value_mask) | 0xc << addr_shift;
61         config->strtfrq[1] = (config->control & ~value_mask) | 0xd << addr_shift;
62
63         xfer.len = len;
64         xfer.tx_buf = config;
65         mutex_lock(&st->lock);
66
67         spi_message_init(&msg);
68         spi_message_add_tail(&xfer, &msg);
69         ret = spi_sync(st->sdev, &msg);
70         if (ret)
71                 goto error_ret;
72 error_ret:
73         mutex_unlock(&st->lock);
74
75         return ret ? ret : len;
76 }
77
78 static IIO_DEVICE_ATTR(dds, S_IWUSR, NULL, ad5930_set_parameter, 0);
79
80 static struct attribute *ad5930_attributes[] = {
81         &iio_dev_attr_dds.dev_attr.attr,
82         NULL,
83 };
84
85 static const struct attribute_group ad5930_attribute_group = {
86         .name = DRV_NAME,
87         .attrs = ad5930_attributes,
88 };
89
90 static const struct iio_info ad5930_info = {
91         .attrs = &ad5930_attribute_group,
92
93         .driver_module = THIS_MODULE,
94 };
95
96 static int __devinit ad5930_probe(struct spi_device *spi)
97 {
98         struct ad5930_state *st;
99         int ret = 0;
100
101         st = kzalloc(sizeof(*st), GFP_KERNEL);
102         if (st == NULL) {
103                 ret = -ENOMEM;
104                 goto error_ret;
105         }
106         spi_set_drvdata(spi, st);
107
108         mutex_init(&st->lock);
109         st->sdev = spi;
110
111         st->idev = iio_allocate_device(0);
112         if (st->idev == NULL) {
113                 ret = -ENOMEM;
114                 goto error_free_st;
115         }
116         st->idev->dev.parent = &spi->dev;
117         st->idev->dev_data = (void *)(st);
118         st->idev->info = &ad5930_info;
119         st->idev->modes = INDIO_DIRECT_MODE;
120
121         ret = iio_device_register(st->idev);
122         if (ret)
123                 goto error_free_dev;
124         spi->max_speed_hz = 2000000;
125         spi->mode = SPI_MODE_3;
126         spi->bits_per_word = 16;
127         spi_setup(spi);
128
129         return 0;
130
131 error_free_dev:
132         iio_free_device(st->idev);
133 error_free_st:
134         kfree(st);
135 error_ret:
136         return ret;
137 }
138
139 static int __devexit ad5930_remove(struct spi_device *spi)
140 {
141         struct ad5930_state *st = spi_get_drvdata(spi);
142
143         iio_device_unregister(st->idev);
144         kfree(st);
145
146         return 0;
147 }
148
149 static struct spi_driver ad5930_driver = {
150         .driver = {
151                 .name = DRV_NAME,
152                 .owner = THIS_MODULE,
153         },
154         .probe = ad5930_probe,
155         .remove = __devexit_p(ad5930_remove),
156 };
157
158 static __init int ad5930_spi_init(void)
159 {
160         return spi_register_driver(&ad5930_driver);
161 }
162 module_init(ad5930_spi_init);
163
164 static __exit void ad5930_spi_exit(void)
165 {
166         spi_unregister_driver(&ad5930_driver);
167 }
168 module_exit(ad5930_spi_exit);
169
170 MODULE_AUTHOR("Cliff Cai");
171 MODULE_DESCRIPTION("Analog Devices ad5930 driver");
172 MODULE_LICENSE("GPL v2");