blob: 8dfd3da8a07b57813881bf89c5743427b2ddc0a2 [file] [log] [blame]
Michael Hennerich69d900a2011-04-18 09:40:58 +02001/*
Lars-Peter Clausen9d41c5b2011-12-09 17:12:42 +01002 * AD5760, AD5780, AD5781, AD5790, AD5791 Voltage Output Digital to Analog
3 * Converter
Michael Hennerich69d900a2011-04-18 09:40:58 +02004 *
5 * Copyright 2011 Analog Devices Inc.
6 *
7 * Licensed under the GPL-2.
8 */
9
10#include <linux/interrupt.h>
Michael Hennerich69d900a2011-04-18 09:40:58 +020011#include <linux/fs.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>
17#include <linux/regulator/consumer.h>
Paul Gortmaker99c97852011-07-03 15:49:50 -040018#include <linux/module.h>
Michael Hennerich69d900a2011-04-18 09:40:58 +020019
Jonathan Cameron06458e22012-04-25 15:54:58 +010020#include <linux/iio/iio.h>
21#include <linux/iio/sysfs.h>
Lars-Peter Clausendbdc0252012-06-04 11:36:28 +020022#include <linux/iio/dac/ad5791.h>
Michael Hennerich69d900a2011-04-18 09:40:58 +020023
Lars-Peter Clausen20374d12012-06-04 11:36:27 +020024#define AD5791_RES_MASK(x) ((1 << (x)) - 1)
25#define AD5791_DAC_MASK AD5791_RES_MASK(20)
26#define AD5791_DAC_MSB (1 << 19)
27
28#define AD5791_CMD_READ (1 << 23)
29#define AD5791_CMD_WRITE (0 << 23)
30#define AD5791_ADDR(addr) ((addr) << 20)
31
32/* Registers */
33#define AD5791_ADDR_NOOP 0
34#define AD5791_ADDR_DAC0 1
35#define AD5791_ADDR_CTRL 2
36#define AD5791_ADDR_CLRCODE 3
37#define AD5791_ADDR_SW_CTRL 4
38
39/* Control Register */
40#define AD5791_CTRL_RBUF (1 << 1)
41#define AD5791_CTRL_OPGND (1 << 2)
42#define AD5791_CTRL_DACTRI (1 << 3)
43#define AD5791_CTRL_BIN2SC (1 << 4)
44#define AD5791_CTRL_SDODIS (1 << 5)
45#define AD5761_CTRL_LINCOMP(x) ((x) << 6)
46
47#define AD5791_LINCOMP_0_10 0
48#define AD5791_LINCOMP_10_12 1
49#define AD5791_LINCOMP_12_16 2
50#define AD5791_LINCOMP_16_19 3
51#define AD5791_LINCOMP_19_20 12
52
53#define AD5780_LINCOMP_0_10 0
54#define AD5780_LINCOMP_10_20 12
55
56/* Software Control Register */
57#define AD5791_SWCTRL_LDAC (1 << 0)
58#define AD5791_SWCTRL_CLR (1 << 1)
59#define AD5791_SWCTRL_RESET (1 << 2)
60
61#define AD5791_DAC_PWRDN_6K 0
62#define AD5791_DAC_PWRDN_3STATE 1
63
64/**
65 * struct ad5791_chip_info - chip specific information
66 * @get_lin_comp: function pointer to the device specific function
67 */
68
69struct ad5791_chip_info {
70 int (*get_lin_comp) (unsigned int span);
71};
72
73/**
74 * struct ad5791_state - driver instance specific data
75 * @us: spi_device
76 * @reg_vdd: positive supply regulator
77 * @reg_vss: negative supply regulator
78 * @chip_info: chip model specific constants
79 * @vref_mv: actual reference voltage used
80 * @vref_neg_mv: voltage of the negative supply
81 * @pwr_down_mode current power down mode
82 */
83
84struct ad5791_state {
85 struct spi_device *spi;
86 struct regulator *reg_vdd;
87 struct regulator *reg_vss;
88 const struct ad5791_chip_info *chip_info;
89 unsigned short vref_mv;
90 unsigned int vref_neg_mv;
91 unsigned ctrl;
92 unsigned pwr_down_mode;
93 bool pwr_down;
94};
95
96/**
97 * ad5791_supported_device_ids:
98 */
99
100enum ad5791_supported_device_ids {
101 ID_AD5760,
102 ID_AD5780,
103 ID_AD5781,
104 ID_AD5791,
105};
106
Michael Hennerich69d900a2011-04-18 09:40:58 +0200107static int ad5791_spi_write(struct spi_device *spi, u8 addr, u32 val)
108{
109 union {
110 u32 d32;
111 u8 d8[4];
112 } data;
113
114 data.d32 = cpu_to_be32(AD5791_CMD_WRITE |
115 AD5791_ADDR(addr) |
116 (val & AD5791_DAC_MASK));
117
118 return spi_write(spi, &data.d8[1], 3);
119}
120
121static int ad5791_spi_read(struct spi_device *spi, u8 addr, u32 *val)
122{
123 union {
124 u32 d32;
125 u8 d8[4];
126 } data[3];
127 int ret;
Michael Hennerich69d900a2011-04-18 09:40:58 +0200128 struct spi_transfer xfers[] = {
129 {
130 .tx_buf = &data[0].d8[1],
131 .bits_per_word = 8,
132 .len = 3,
133 .cs_change = 1,
134 }, {
135 .tx_buf = &data[1].d8[1],
136 .rx_buf = &data[2].d8[1],
137 .bits_per_word = 8,
138 .len = 3,
139 },
140 };
141
142 data[0].d32 = cpu_to_be32(AD5791_CMD_READ |
143 AD5791_ADDR(addr));
144 data[1].d32 = cpu_to_be32(AD5791_ADDR(AD5791_ADDR_NOOP));
145
Lars-Peter Clausen14543a02013-01-09 17:31:00 +0000146 ret = spi_sync_transfer(spi, xfers, ARRAY_SIZE(xfers));
Michael Hennerich69d900a2011-04-18 09:40:58 +0200147
148 *val = be32_to_cpu(data[2].d32);
149
150 return ret;
151}
152
Lars-Peter Clausen4571b392012-06-04 11:36:18 +0200153static const char * const ad5791_powerdown_modes[] = {
154 "6kohm_to_gnd",
155 "three_state",
Jonathan Cameronc5b99392011-09-02 17:25:19 +0100156};
Michael Hennerich69d900a2011-04-18 09:40:58 +0200157
Lars-Peter Clausen4571b392012-06-04 11:36:18 +0200158static int ad5791_get_powerdown_mode(struct iio_dev *indio_dev,
159 const struct iio_chan_spec *chan)
Michael Hennerich69d900a2011-04-18 09:40:58 +0200160{
Jonathan Cameronf5730d52011-06-27 13:07:34 +0100161 struct ad5791_state *st = iio_priv(indio_dev);
Michael Hennerich69d900a2011-04-18 09:40:58 +0200162
Lars-Peter Clausen4571b392012-06-04 11:36:18 +0200163 return st->pwr_down_mode;
Michael Hennerich69d900a2011-04-18 09:40:58 +0200164}
165
Lars-Peter Clausen4571b392012-06-04 11:36:18 +0200166static int ad5791_set_powerdown_mode(struct iio_dev *indio_dev,
167 const struct iio_chan_spec *chan, unsigned int mode)
Michael Hennerich69d900a2011-04-18 09:40:58 +0200168{
Jonathan Cameronf5730d52011-06-27 13:07:34 +0100169 struct ad5791_state *st = iio_priv(indio_dev);
Michael Hennerich69d900a2011-04-18 09:40:58 +0200170
Lars-Peter Clausen4571b392012-06-04 11:36:18 +0200171 st->pwr_down_mode = mode;
Michael Hennerich69d900a2011-04-18 09:40:58 +0200172
Lars-Peter Clausen4571b392012-06-04 11:36:18 +0200173 return 0;
Michael Hennerich69d900a2011-04-18 09:40:58 +0200174}
175
Lars-Peter Clausen4571b392012-06-04 11:36:18 +0200176static const struct iio_enum ad5791_powerdown_mode_enum = {
177 .items = ad5791_powerdown_modes,
178 .num_items = ARRAY_SIZE(ad5791_powerdown_modes),
179 .get = ad5791_get_powerdown_mode,
180 .set = ad5791_set_powerdown_mode,
181};
182
183static ssize_t ad5791_read_dac_powerdown(struct iio_dev *indio_dev,
184 uintptr_t private, const struct iio_chan_spec *chan, char *buf)
Michael Hennerich69d900a2011-04-18 09:40:58 +0200185{
Jonathan Cameronf5730d52011-06-27 13:07:34 +0100186 struct ad5791_state *st = iio_priv(indio_dev);
Michael Hennerich69d900a2011-04-18 09:40:58 +0200187
188 return sprintf(buf, "%d\n", st->pwr_down);
189}
190
Lars-Peter Clausen4571b392012-06-04 11:36:18 +0200191static ssize_t ad5791_write_dac_powerdown(struct iio_dev *indio_dev,
192 uintptr_t private, const struct iio_chan_spec *chan, const char *buf,
193 size_t len)
Michael Hennerich69d900a2011-04-18 09:40:58 +0200194{
Lars-Peter Clausen4468cb552012-06-04 11:36:24 +0200195 bool pwr_down;
Michael Hennerich69d900a2011-04-18 09:40:58 +0200196 int ret;
Jonathan Cameronf5730d52011-06-27 13:07:34 +0100197 struct ad5791_state *st = iio_priv(indio_dev);
Michael Hennerich69d900a2011-04-18 09:40:58 +0200198
Lars-Peter Clausen4468cb552012-06-04 11:36:24 +0200199 ret = strtobool(buf, &pwr_down);
Michael Hennerich69d900a2011-04-18 09:40:58 +0200200 if (ret)
201 return ret;
202
Lars-Peter Clausen4468cb552012-06-04 11:36:24 +0200203 if (!pwr_down) {
Michael Hennerich69d900a2011-04-18 09:40:58 +0200204 st->ctrl &= ~(AD5791_CTRL_OPGND | AD5791_CTRL_DACTRI);
Lars-Peter Clausen4468cb552012-06-04 11:36:24 +0200205 } else {
Michael Hennerich69d900a2011-04-18 09:40:58 +0200206 if (st->pwr_down_mode == AD5791_DAC_PWRDN_6K)
207 st->ctrl |= AD5791_CTRL_OPGND;
208 else if (st->pwr_down_mode == AD5791_DAC_PWRDN_3STATE)
209 st->ctrl |= AD5791_CTRL_DACTRI;
Lars-Peter Clausen4468cb552012-06-04 11:36:24 +0200210 }
211 st->pwr_down = pwr_down;
Michael Hennerich69d900a2011-04-18 09:40:58 +0200212
213 ret = ad5791_spi_write(st->spi, AD5791_ADDR_CTRL, st->ctrl);
214
215 return ret ? ret : len;
216}
217
Michael Hennerich69d900a2011-04-18 09:40:58 +0200218static int ad5791_get_lin_comp(unsigned int span)
219{
220 if (span <= 10000)
221 return AD5791_LINCOMP_0_10;
222 else if (span <= 12000)
223 return AD5791_LINCOMP_10_12;
224 else if (span <= 16000)
225 return AD5791_LINCOMP_12_16;
226 else if (span <= 19000)
227 return AD5791_LINCOMP_16_19;
228 else
229 return AD5791_LINCOMP_19_20;
230}
231
Michael Hennerichba1c2bb2011-04-27 17:13:58 +0200232static int ad5780_get_lin_comp(unsigned int span)
233{
234 if (span <= 10000)
235 return AD5780_LINCOMP_0_10;
236 else
237 return AD5780_LINCOMP_10_20;
238}
Michael Hennerichba1c2bb2011-04-27 17:13:58 +0200239static const struct ad5791_chip_info ad5791_chip_info_tbl[] = {
240 [ID_AD5760] = {
Michael Hennerichba1c2bb2011-04-27 17:13:58 +0200241 .get_lin_comp = ad5780_get_lin_comp,
242 },
243 [ID_AD5780] = {
Michael Hennerichba1c2bb2011-04-27 17:13:58 +0200244 .get_lin_comp = ad5780_get_lin_comp,
245 },
246 [ID_AD5781] = {
Michael Hennerichba1c2bb2011-04-27 17:13:58 +0200247 .get_lin_comp = ad5791_get_lin_comp,
248 },
249 [ID_AD5791] = {
Michael Hennerichba1c2bb2011-04-27 17:13:58 +0200250 .get_lin_comp = ad5791_get_lin_comp,
251 },
252};
253
Jonathan Cameronc5b99392011-09-02 17:25:19 +0100254static int ad5791_read_raw(struct iio_dev *indio_dev,
255 struct iio_chan_spec const *chan,
256 int *val,
257 int *val2,
258 long m)
259{
260 struct ad5791_state *st = iio_priv(indio_dev);
Lars-Peter Clausen9dc99612011-10-19 17:47:50 +0200261 u64 val64;
Jonathan Cameronc5b99392011-09-02 17:25:19 +0100262 int ret;
263
264 switch (m) {
Jonathan Cameron09f4eb42012-04-15 17:41:19 +0100265 case IIO_CHAN_INFO_RAW:
Jonathan Cameronc5b99392011-09-02 17:25:19 +0100266 ret = ad5791_spi_read(st->spi, chan->address, val);
267 if (ret)
268 return ret;
269 *val &= AD5791_DAC_MASK;
270 *val >>= chan->scan_type.shift;
Jonathan Cameronc5b99392011-09-02 17:25:19 +0100271 return IIO_VAL_INT;
Jonathan Cameronc8a9f802011-10-26 17:41:36 +0100272 case IIO_CHAN_INFO_SCALE:
Jonathan Cameronc5b99392011-09-02 17:25:19 +0100273 *val = 0;
Lars-Peter Clausen75bb23a2011-10-19 17:47:52 +0200274 *val2 = (((u64)st->vref_mv) * 1000000ULL) >> chan->scan_type.realbits;
Jonathan Cameronc5b99392011-09-02 17:25:19 +0100275 return IIO_VAL_INT_PLUS_MICRO;
Jonathan Cameronc8a9f802011-10-26 17:41:36 +0100276 case IIO_CHAN_INFO_OFFSET:
Lars-Peter Clausen9dc99612011-10-19 17:47:50 +0200277 val64 = (((u64)st->vref_neg_mv) << chan->scan_type.realbits);
278 do_div(val64, st->vref_mv);
279 *val = -val64;
280 return IIO_VAL_INT;
Jonathan Cameronc5b99392011-09-02 17:25:19 +0100281 default:
282 return -EINVAL;
283 }
284
285};
286
Lars-Peter Clausen4571b392012-06-04 11:36:18 +0200287static const struct iio_chan_spec_ext_info ad5791_ext_info[] = {
288 {
289 .name = "powerdown",
290 .shared = true,
291 .read = ad5791_read_dac_powerdown,
292 .write = ad5791_write_dac_powerdown,
293 },
294 IIO_ENUM("powerdown_mode", true, &ad5791_powerdown_mode_enum),
295 IIO_ENUM_AVAILABLE("powerdown_mode", &ad5791_powerdown_mode_enum),
296 { },
297};
298
299#define AD5791_CHAN(bits, shift) { \
300 .type = IIO_VOLTAGE, \
301 .output = 1, \
302 .indexed = 1, \
303 .address = AD5791_ADDR_DAC0, \
304 .channel = 0, \
305 .info_mask = IIO_CHAN_INFO_RAW_SEPARATE_BIT | \
306 IIO_CHAN_INFO_SCALE_SHARED_BIT | \
307 IIO_CHAN_INFO_OFFSET_SHARED_BIT, \
308 .scan_type = IIO_ST('u', bits, 24, shift), \
309 .ext_info = ad5791_ext_info, \
310}
311
312static const struct iio_chan_spec ad5791_channels[] = {
313 [ID_AD5760] = AD5791_CHAN(16, 4),
314 [ID_AD5780] = AD5791_CHAN(18, 2),
315 [ID_AD5781] = AD5791_CHAN(18, 2),
316 [ID_AD5791] = AD5791_CHAN(20, 0)
317};
Jonathan Cameronc5b99392011-09-02 17:25:19 +0100318
319static int ad5791_write_raw(struct iio_dev *indio_dev,
320 struct iio_chan_spec const *chan,
321 int val,
322 int val2,
323 long mask)
324{
325 struct ad5791_state *st = iio_priv(indio_dev);
326
327 switch (mask) {
Jonathan Cameron09f4eb42012-04-15 17:41:19 +0100328 case IIO_CHAN_INFO_RAW:
Lars-Peter Clausen021c0a32011-10-19 17:47:49 +0200329 val &= AD5791_RES_MASK(chan->scan_type.realbits);
Jonathan Cameronc5b99392011-09-02 17:25:19 +0100330 val <<= chan->scan_type.shift;
331
332 return ad5791_spi_write(st->spi, chan->address, val);
333
334 default:
335 return -EINVAL;
336 }
337}
338
Jonathan Cameron6fe81352011-05-18 14:42:37 +0100339static const struct iio_info ad5791_info = {
Jonathan Cameronc5b99392011-09-02 17:25:19 +0100340 .read_raw = &ad5791_read_raw,
341 .write_raw = &ad5791_write_raw,
Jonathan Cameron6fe81352011-05-18 14:42:37 +0100342 .driver_module = THIS_MODULE,
343};
344
Greg Kroah-Hartmanfc526922012-12-21 13:21:43 -0800345static int ad5791_probe(struct spi_device *spi)
Michael Hennerich69d900a2011-04-18 09:40:58 +0200346{
347 struct ad5791_platform_data *pdata = spi->dev.platform_data;
Jonathan Cameronf5730d52011-06-27 13:07:34 +0100348 struct iio_dev *indio_dev;
Michael Hennerich69d900a2011-04-18 09:40:58 +0200349 struct ad5791_state *st;
350 int ret, pos_voltage_uv = 0, neg_voltage_uv = 0;
351
Lars-Peter Clausen7cbb7532012-04-26 13:35:01 +0200352 indio_dev = iio_device_alloc(sizeof(*st));
Jonathan Cameronf5730d52011-06-27 13:07:34 +0100353 if (indio_dev == NULL) {
354 ret = -ENOMEM;
Jonathan Cameron26a54792011-08-30 12:41:19 +0100355 goto error_ret;
Jonathan Cameronf5730d52011-06-27 13:07:34 +0100356 }
357 st = iio_priv(indio_dev);
Jonathan Cameron26a54792011-08-30 12:41:19 +0100358 st->reg_vdd = regulator_get(&spi->dev, "vdd");
359 if (!IS_ERR(st->reg_vdd)) {
360 ret = regulator_enable(st->reg_vdd);
361 if (ret)
362 goto error_put_reg_pos;
363
Axel Lin7e2dcc62012-12-14 07:55:00 +0000364 ret = regulator_get_voltage(st->reg_vdd);
365 if (ret < 0)
366 goto error_disable_reg_pos;
367
368 pos_voltage_uv = ret;
Jonathan Cameron26a54792011-08-30 12:41:19 +0100369 }
370
371 st->reg_vss = regulator_get(&spi->dev, "vss");
372 if (!IS_ERR(st->reg_vss)) {
373 ret = regulator_enable(st->reg_vss);
374 if (ret)
375 goto error_put_reg_neg;
376
Axel Lin7e2dcc62012-12-14 07:55:00 +0000377 ret = regulator_get_voltage(st->reg_vss);
378 if (ret < 0)
379 goto error_disable_reg_neg;
380
381 neg_voltage_uv = ret;
Jonathan Cameron26a54792011-08-30 12:41:19 +0100382 }
383
Jonathan Cameronf5730d52011-06-27 13:07:34 +0100384 st->pwr_down = true;
385 st->spi = spi;
386
Lars-Peter Clausen9dc99612011-10-19 17:47:50 +0200387 if (!IS_ERR(st->reg_vss) && !IS_ERR(st->reg_vdd)) {
388 st->vref_mv = (pos_voltage_uv + neg_voltage_uv) / 1000;
389 st->vref_neg_mv = neg_voltage_uv / 1000;
390 } else if (pdata) {
391 st->vref_mv = pdata->vref_pos_mv + pdata->vref_neg_mv;
392 st->vref_neg_mv = pdata->vref_neg_mv;
393 } else {
Michael Hennerich69d900a2011-04-18 09:40:58 +0200394 dev_warn(&spi->dev, "reference voltage unspecified\n");
Lars-Peter Clausen9dc99612011-10-19 17:47:50 +0200395 }
Michael Hennerich69d900a2011-04-18 09:40:58 +0200396
397 ret = ad5791_spi_write(spi, AD5791_ADDR_SW_CTRL, AD5791_SWCTRL_RESET);
398 if (ret)
Jonathan Cameron26a54792011-08-30 12:41:19 +0100399 goto error_disable_reg_neg;
Michael Hennerich69d900a2011-04-18 09:40:58 +0200400
Jonathan Cameronc5b99392011-09-02 17:25:19 +0100401 st->chip_info = &ad5791_chip_info_tbl[spi_get_device_id(spi)
402 ->driver_data];
Michael Hennerich69d900a2011-04-18 09:40:58 +0200403
404
Michael Hennerichba1c2bb2011-04-27 17:13:58 +0200405 st->ctrl = AD5761_CTRL_LINCOMP(st->chip_info->get_lin_comp(st->vref_mv))
406 | ((pdata && pdata->use_rbuf_gain2) ? 0 : AD5791_CTRL_RBUF) |
Michael Hennerich69d900a2011-04-18 09:40:58 +0200407 AD5791_CTRL_BIN2SC;
408
409 ret = ad5791_spi_write(spi, AD5791_ADDR_CTRL, st->ctrl |
410 AD5791_CTRL_OPGND | AD5791_CTRL_DACTRI);
411 if (ret)
Jonathan Cameron26a54792011-08-30 12:41:19 +0100412 goto error_disable_reg_neg;
Michael Hennerich69d900a2011-04-18 09:40:58 +0200413
Jonathan Cameronf5730d52011-06-27 13:07:34 +0100414 spi_set_drvdata(spi, indio_dev);
415 indio_dev->dev.parent = &spi->dev;
416 indio_dev->info = &ad5791_info;
417 indio_dev->modes = INDIO_DIRECT_MODE;
Jonathan Cameronc5b99392011-09-02 17:25:19 +0100418 indio_dev->channels
419 = &ad5791_channels[spi_get_device_id(spi)->driver_data];
420 indio_dev->num_channels = 1;
421 indio_dev->name = spi_get_device_id(st->spi)->name;
Jonathan Cameronf5730d52011-06-27 13:07:34 +0100422 ret = iio_device_register(indio_dev);
Michael Hennerich69d900a2011-04-18 09:40:58 +0200423 if (ret)
Jonathan Cameron26a54792011-08-30 12:41:19 +0100424 goto error_disable_reg_neg;
Michael Hennerich69d900a2011-04-18 09:40:58 +0200425
426 return 0;
427
Michael Hennerich69d900a2011-04-18 09:40:58 +0200428error_disable_reg_neg:
Jonathan Cameron26a54792011-08-30 12:41:19 +0100429 if (!IS_ERR(st->reg_vss))
430 regulator_disable(st->reg_vss);
Michael Hennerich69d900a2011-04-18 09:40:58 +0200431error_put_reg_neg:
Jonathan Cameron26a54792011-08-30 12:41:19 +0100432 if (!IS_ERR(st->reg_vss))
433 regulator_put(st->reg_vss);
Michael Hennerich69d900a2011-04-18 09:40:58 +0200434
Axel Lin7e2dcc62012-12-14 07:55:00 +0000435error_disable_reg_pos:
Jonathan Cameron26a54792011-08-30 12:41:19 +0100436 if (!IS_ERR(st->reg_vdd))
437 regulator_disable(st->reg_vdd);
Michael Hennerich69d900a2011-04-18 09:40:58 +0200438error_put_reg_pos:
Jonathan Cameron26a54792011-08-30 12:41:19 +0100439 if (!IS_ERR(st->reg_vdd))
440 regulator_put(st->reg_vdd);
Lars-Peter Clausen7cbb7532012-04-26 13:35:01 +0200441 iio_device_free(indio_dev);
Jonathan Cameron26a54792011-08-30 12:41:19 +0100442error_ret:
Michael Hennerich69d900a2011-04-18 09:40:58 +0200443
Michael Hennerich69d900a2011-04-18 09:40:58 +0200444 return ret;
445}
446
Greg Kroah-Hartmanfc526922012-12-21 13:21:43 -0800447static int ad5791_remove(struct spi_device *spi)
Michael Hennerich69d900a2011-04-18 09:40:58 +0200448{
Jonathan Cameronf5730d52011-06-27 13:07:34 +0100449 struct iio_dev *indio_dev = spi_get_drvdata(spi);
450 struct ad5791_state *st = iio_priv(indio_dev);
Michael Hennerich69d900a2011-04-18 09:40:58 +0200451
Jonathan Camerond2fffd62011-10-14 14:46:58 +0100452 iio_device_unregister(indio_dev);
Michael Hennerich69d900a2011-04-18 09:40:58 +0200453 if (!IS_ERR(st->reg_vdd)) {
Jonathan Cameron26a54792011-08-30 12:41:19 +0100454 regulator_disable(st->reg_vdd);
455 regulator_put(st->reg_vdd);
Michael Hennerich69d900a2011-04-18 09:40:58 +0200456 }
457
458 if (!IS_ERR(st->reg_vss)) {
Jonathan Cameron26a54792011-08-30 12:41:19 +0100459 regulator_disable(st->reg_vss);
460 regulator_put(st->reg_vss);
Michael Hennerich69d900a2011-04-18 09:40:58 +0200461 }
Lars-Peter Clausen7cbb7532012-04-26 13:35:01 +0200462 iio_device_free(indio_dev);
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100463
Michael Hennerich69d900a2011-04-18 09:40:58 +0200464 return 0;
465}
466
467static const struct spi_device_id ad5791_id[] = {
Michael Hennerichba1c2bb2011-04-27 17:13:58 +0200468 {"ad5760", ID_AD5760},
469 {"ad5780", ID_AD5780},
Michael Hennerich69d900a2011-04-18 09:40:58 +0200470 {"ad5781", ID_AD5781},
Lars-Peter Clausen9d41c5b2011-12-09 17:12:42 +0100471 {"ad5790", ID_AD5791},
Michael Hennerichba1c2bb2011-04-27 17:13:58 +0200472 {"ad5791", ID_AD5791},
Michael Hennerich69d900a2011-04-18 09:40:58 +0200473 {}
474};
Lars-Peter Clausen55e43902011-11-16 08:53:31 +0100475MODULE_DEVICE_TABLE(spi, ad5791_id);
Michael Hennerich69d900a2011-04-18 09:40:58 +0200476
477static struct spi_driver ad5791_driver = {
478 .driver = {
479 .name = "ad5791",
480 .owner = THIS_MODULE,
481 },
482 .probe = ad5791_probe,
Greg Kroah-Hartmanfc526922012-12-21 13:21:43 -0800483 .remove = ad5791_remove,
Michael Hennerich69d900a2011-04-18 09:40:58 +0200484 .id_table = ad5791_id,
485};
Lars-Peter Clausenae6ae6f2011-11-16 10:13:39 +0100486module_spi_driver(ad5791_driver);
Michael Hennerich69d900a2011-04-18 09:40:58 +0200487
488MODULE_AUTHOR("Michael Hennerich <hennerich@blackfin.uclinux.org>");
Lars-Peter Clausen9d41c5b2011-12-09 17:12:42 +0100489MODULE_DESCRIPTION("Analog Devices AD5760/AD5780/AD5781/AD5790/AD5791 DAC");
Michael Hennerich69d900a2011-04-18 09:40:58 +0200490MODULE_LICENSE("GPL v2");