2 * Driver for ADI Direct Digital Synthesis ad9951
4 * Copyright (c) 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>
21 #define DRV_NAME "ad9951"
27 #define OSKEN (1 << 1)
28 #define LOAD_ARR (1 << 2)
30 #define AUTO_SYNC (1 << 7)
33 #define SDIO_IPT (1 << 1)
34 #define CLR_PHA (1 << 2)
35 #define SINE_OPT (1 << 4)
36 #define ACLR_PHA (1 << 5)
38 #define VCO_RANGE (1 << 2)
40 #define CRS_OPT (1 << 1)
41 #define HMANU_SYNC (1 << 2)
42 #define HSPD_SYNC (1 << 3)
44 /* Register format: 1 byte addr + value */
45 struct ad9951_config {
55 struct spi_device *sdev;
58 static ssize_t ad9951_set_parameter(struct device *dev,
59 struct device_attribute *attr,
63 struct spi_message msg;
64 struct spi_transfer xfer;
66 struct ad9951_config *config = (struct ad9951_config *)buf;
67 struct iio_dev *idev = dev_get_drvdata(dev);
68 struct ad9951_state *st = idev->dev_data;
71 xfer.tx_buf = &config->asf[0];
72 mutex_lock(&st->lock);
74 spi_message_init(&msg);
75 spi_message_add_tail(&xfer, &msg);
76 ret = spi_sync(st->sdev, &msg);
81 xfer.tx_buf = &config->arr[0];
83 spi_message_init(&msg);
84 spi_message_add_tail(&xfer, &msg);
85 ret = spi_sync(st->sdev, &msg);
90 xfer.tx_buf = &config->ftw0[0];
92 spi_message_init(&msg);
93 spi_message_add_tail(&xfer, &msg);
94 ret = spi_sync(st->sdev, &msg);
99 xfer.tx_buf = &config->ftw1[0];
101 spi_message_init(&msg);
102 spi_message_add_tail(&xfer, &msg);
103 ret = spi_sync(st->sdev, &msg);
107 mutex_unlock(&st->lock);
109 return ret ? ret : len;
112 static IIO_DEVICE_ATTR(dds, S_IWUSR, NULL, ad9951_set_parameter, 0);
114 static void ad9951_init(struct ad9951_state *st)
116 struct spi_message msg;
117 struct spi_transfer xfer;
123 cfr[2] = LSB_FST | CLR_PHA | SINE_OPT | ACLR_PHA;
124 cfr[3] = AUTO_OSK | OSKEN | LOAD_ARR;
127 mutex_lock(&st->lock);
132 spi_message_init(&msg);
133 spi_message_add_tail(&xfer, &msg);
134 ret = spi_sync(st->sdev, &msg);
146 spi_message_init(&msg);
147 spi_message_add_tail(&xfer, &msg);
148 ret = spi_sync(st->sdev, &msg);
153 mutex_unlock(&st->lock);
159 static struct attribute *ad9951_attributes[] = {
160 &iio_dev_attr_dds.dev_attr.attr,
164 static const struct attribute_group ad9951_attribute_group = {
166 .attrs = ad9951_attributes,
169 static int __devinit ad9951_probe(struct spi_device *spi)
171 struct ad9951_state *st;
174 st = kzalloc(sizeof(*st), GFP_KERNEL);
179 spi_set_drvdata(spi, st);
181 mutex_init(&st->lock);
184 st->idev = iio_allocate_device();
185 if (st->idev == NULL) {
189 st->idev->dev.parent = &spi->dev;
190 st->idev->num_interrupt_lines = 0;
191 st->idev->event_attrs = NULL;
193 st->idev->attrs = &ad9951_attribute_group;
194 st->idev->dev_data = (void *)(st);
195 st->idev->driver_module = THIS_MODULE;
196 st->idev->modes = INDIO_DIRECT_MODE;
198 ret = iio_device_register(st->idev);
201 spi->max_speed_hz = 2000000;
202 spi->mode = SPI_MODE_3;
203 spi->bits_per_word = 8;
209 iio_free_device(st->idev);
216 static int __devexit ad9951_remove(struct spi_device *spi)
218 struct ad9951_state *st = spi_get_drvdata(spi);
220 iio_device_unregister(st->idev);
226 static struct spi_driver ad9951_driver = {
229 .owner = THIS_MODULE,
231 .probe = ad9951_probe,
232 .remove = __devexit_p(ad9951_remove),
235 static __init int ad9951_spi_init(void)
237 return spi_register_driver(&ad9951_driver);
239 module_init(ad9951_spi_init);
241 static __exit void ad9951_spi_exit(void)
243 spi_unregister_driver(&ad9951_driver);
245 module_exit(ad9951_spi_exit);
247 MODULE_AUTHOR("Cliff Cai");
248 MODULE_DESCRIPTION("Analog Devices ad9951 driver");
249 MODULE_LICENSE("GPL v2");