2 * AD5760, AD5780, AD5781, AD5790, AD5791 Voltage Output Digital to Analog
5 * Copyright 2011 Analog Devices Inc.
7 * Licensed under the GPL-2.
10 #include <linux/interrupt.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>
18 #include <linux/module.h>
20 #include <linux/iio/iio.h>
21 #include <linux/iio/sysfs.h>
22 #include <linux/iio/dac/ad5791.h>
24 #define AD5791_RES_MASK(x) ((1 << (x)) - 1)
25 #define AD5791_DAC_MASK AD5791_RES_MASK(20)
26 #define AD5791_DAC_MSB (1 << 19)
28 #define AD5791_CMD_READ (1 << 23)
29 #define AD5791_CMD_WRITE (0 << 23)
30 #define AD5791_ADDR(addr) ((addr) << 20)
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
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)
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
53 #define AD5780_LINCOMP_0_10 0
54 #define AD5780_LINCOMP_10_20 12
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)
61 #define AD5791_DAC_PWRDN_6K 0
62 #define AD5791_DAC_PWRDN_3STATE 1
65 * struct ad5791_chip_info - chip specific information
66 * @get_lin_comp: function pointer to the device specific function
69 struct ad5791_chip_info
{
70 int (*get_lin_comp
) (unsigned int span
);
74 * struct ad5791_state - driver instance specific data
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
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
;
92 unsigned pwr_down_mode
;
97 * ad5791_supported_device_ids:
100 enum ad5791_supported_device_ids
{
107 static int ad5791_spi_write(struct spi_device
*spi
, u8 addr
, u32 val
)
114 data
.d32
= cpu_to_be32(AD5791_CMD_WRITE
|
116 (val
& AD5791_DAC_MASK
));
118 return spi_write(spi
, &data
.d8
[1], 3);
121 static int ad5791_spi_read(struct spi_device
*spi
, u8 addr
, u32
*val
)
128 struct spi_transfer xfers
[] = {
130 .tx_buf
= &data
[0].d8
[1],
135 .tx_buf
= &data
[1].d8
[1],
136 .rx_buf
= &data
[2].d8
[1],
142 data
[0].d32
= cpu_to_be32(AD5791_CMD_READ
|
144 data
[1].d32
= cpu_to_be32(AD5791_ADDR(AD5791_ADDR_NOOP
));
146 ret
= spi_sync_transfer(spi
, xfers
, ARRAY_SIZE(xfers
));
148 *val
= be32_to_cpu(data
[2].d32
);
153 static const char * const ad5791_powerdown_modes
[] = {
158 static int ad5791_get_powerdown_mode(struct iio_dev
*indio_dev
,
159 const struct iio_chan_spec
*chan
)
161 struct ad5791_state
*st
= iio_priv(indio_dev
);
163 return st
->pwr_down_mode
;
166 static int ad5791_set_powerdown_mode(struct iio_dev
*indio_dev
,
167 const struct iio_chan_spec
*chan
, unsigned int mode
)
169 struct ad5791_state
*st
= iio_priv(indio_dev
);
171 st
->pwr_down_mode
= mode
;
176 static 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
,
183 static ssize_t
ad5791_read_dac_powerdown(struct iio_dev
*indio_dev
,
184 uintptr_t private, const struct iio_chan_spec
*chan
, char *buf
)
186 struct ad5791_state
*st
= iio_priv(indio_dev
);
188 return sprintf(buf
, "%d\n", st
->pwr_down
);
191 static ssize_t
ad5791_write_dac_powerdown(struct iio_dev
*indio_dev
,
192 uintptr_t private, const struct iio_chan_spec
*chan
, const char *buf
,
197 struct ad5791_state
*st
= iio_priv(indio_dev
);
199 ret
= strtobool(buf
, &pwr_down
);
204 st
->ctrl
&= ~(AD5791_CTRL_OPGND
| AD5791_CTRL_DACTRI
);
206 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
;
211 st
->pwr_down
= pwr_down
;
213 ret
= ad5791_spi_write(st
->spi
, AD5791_ADDR_CTRL
, st
->ctrl
);
215 return ret
? ret
: len
;
218 static int ad5791_get_lin_comp(unsigned int span
)
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
;
229 return AD5791_LINCOMP_19_20
;
232 static int ad5780_get_lin_comp(unsigned int span
)
235 return AD5780_LINCOMP_0_10
;
237 return AD5780_LINCOMP_10_20
;
239 static const struct ad5791_chip_info ad5791_chip_info_tbl
[] = {
241 .get_lin_comp
= ad5780_get_lin_comp
,
244 .get_lin_comp
= ad5780_get_lin_comp
,
247 .get_lin_comp
= ad5791_get_lin_comp
,
250 .get_lin_comp
= ad5791_get_lin_comp
,
254 static int ad5791_read_raw(struct iio_dev
*indio_dev
,
255 struct iio_chan_spec
const *chan
,
260 struct ad5791_state
*st
= iio_priv(indio_dev
);
265 case IIO_CHAN_INFO_RAW
:
266 ret
= ad5791_spi_read(st
->spi
, chan
->address
, val
);
269 *val
&= AD5791_DAC_MASK
;
270 *val
>>= chan
->scan_type
.shift
;
272 case IIO_CHAN_INFO_SCALE
:
274 *val2
= (1 << chan
->scan_type
.realbits
) - 1;
275 return IIO_VAL_FRACTIONAL
;
276 case IIO_CHAN_INFO_OFFSET
:
277 val64
= (((u64
)st
->vref_neg_mv
) << chan
->scan_type
.realbits
);
278 do_div(val64
, st
->vref_mv
);
287 static const struct iio_chan_spec_ext_info ad5791_ext_info
[] = {
290 .shared
= IIO_SHARED_BY_TYPE
,
291 .read
= ad5791_read_dac_powerdown
,
292 .write
= ad5791_write_dac_powerdown
,
294 IIO_ENUM("powerdown_mode", IIO_SHARED_BY_TYPE
,
295 &ad5791_powerdown_mode_enum
),
296 IIO_ENUM_AVAILABLE("powerdown_mode", &ad5791_powerdown_mode_enum
),
300 #define AD5791_CHAN(bits, shift) { \
301 .type = IIO_VOLTAGE, \
304 .address = AD5791_ADDR_DAC0, \
306 .info_mask_separate = BIT(IIO_CHAN_INFO_RAW), \
307 .info_mask_shared_by_type = BIT(IIO_CHAN_INFO_SCALE) | \
308 BIT(IIO_CHAN_INFO_OFFSET), \
309 .scan_type = IIO_ST('u', bits, 24, shift), \
310 .ext_info = ad5791_ext_info, \
313 static const struct iio_chan_spec ad5791_channels
[] = {
314 [ID_AD5760
] = AD5791_CHAN(16, 4),
315 [ID_AD5780
] = AD5791_CHAN(18, 2),
316 [ID_AD5781
] = AD5791_CHAN(18, 2),
317 [ID_AD5791
] = AD5791_CHAN(20, 0)
320 static int ad5791_write_raw(struct iio_dev
*indio_dev
,
321 struct iio_chan_spec
const *chan
,
326 struct ad5791_state
*st
= iio_priv(indio_dev
);
329 case IIO_CHAN_INFO_RAW
:
330 val
&= AD5791_RES_MASK(chan
->scan_type
.realbits
);
331 val
<<= chan
->scan_type
.shift
;
333 return ad5791_spi_write(st
->spi
, chan
->address
, val
);
340 static const struct iio_info ad5791_info
= {
341 .read_raw
= &ad5791_read_raw
,
342 .write_raw
= &ad5791_write_raw
,
343 .driver_module
= THIS_MODULE
,
346 static int ad5791_probe(struct spi_device
*spi
)
348 struct ad5791_platform_data
*pdata
= spi
->dev
.platform_data
;
349 struct iio_dev
*indio_dev
;
350 struct ad5791_state
*st
;
351 int ret
, pos_voltage_uv
= 0, neg_voltage_uv
= 0;
353 indio_dev
= devm_iio_device_alloc(&spi
->dev
, sizeof(*st
));
356 st
= iio_priv(indio_dev
);
357 st
->reg_vdd
= devm_regulator_get(&spi
->dev
, "vdd");
358 if (!IS_ERR(st
->reg_vdd
)) {
359 ret
= regulator_enable(st
->reg_vdd
);
363 ret
= regulator_get_voltage(st
->reg_vdd
);
365 goto error_disable_reg_pos
;
367 pos_voltage_uv
= ret
;
370 st
->reg_vss
= devm_regulator_get(&spi
->dev
, "vss");
371 if (!IS_ERR(st
->reg_vss
)) {
372 ret
= regulator_enable(st
->reg_vss
);
374 goto error_disable_reg_pos
;
376 ret
= regulator_get_voltage(st
->reg_vss
);
378 goto error_disable_reg_neg
;
380 neg_voltage_uv
= ret
;
386 if (!IS_ERR(st
->reg_vss
) && !IS_ERR(st
->reg_vdd
)) {
387 st
->vref_mv
= (pos_voltage_uv
+ neg_voltage_uv
) / 1000;
388 st
->vref_neg_mv
= neg_voltage_uv
/ 1000;
390 st
->vref_mv
= pdata
->vref_pos_mv
+ pdata
->vref_neg_mv
;
391 st
->vref_neg_mv
= pdata
->vref_neg_mv
;
393 dev_warn(&spi
->dev
, "reference voltage unspecified\n");
396 ret
= ad5791_spi_write(spi
, AD5791_ADDR_SW_CTRL
, AD5791_SWCTRL_RESET
);
398 goto error_disable_reg_neg
;
400 st
->chip_info
= &ad5791_chip_info_tbl
[spi_get_device_id(spi
)
404 st
->ctrl
= AD5761_CTRL_LINCOMP(st
->chip_info
->get_lin_comp(st
->vref_mv
))
405 | ((pdata
&& pdata
->use_rbuf_gain2
) ? 0 : AD5791_CTRL_RBUF
) |
408 ret
= ad5791_spi_write(spi
, AD5791_ADDR_CTRL
, st
->ctrl
|
409 AD5791_CTRL_OPGND
| AD5791_CTRL_DACTRI
);
411 goto error_disable_reg_neg
;
413 spi_set_drvdata(spi
, indio_dev
);
414 indio_dev
->dev
.parent
= &spi
->dev
;
415 indio_dev
->info
= &ad5791_info
;
416 indio_dev
->modes
= INDIO_DIRECT_MODE
;
418 = &ad5791_channels
[spi_get_device_id(spi
)->driver_data
];
419 indio_dev
->num_channels
= 1;
420 indio_dev
->name
= spi_get_device_id(st
->spi
)->name
;
421 ret
= iio_device_register(indio_dev
);
423 goto error_disable_reg_neg
;
427 error_disable_reg_neg
:
428 if (!IS_ERR(st
->reg_vss
))
429 regulator_disable(st
->reg_vss
);
430 error_disable_reg_pos
:
431 if (!IS_ERR(st
->reg_vdd
))
432 regulator_disable(st
->reg_vdd
);
436 static int ad5791_remove(struct spi_device
*spi
)
438 struct iio_dev
*indio_dev
= spi_get_drvdata(spi
);
439 struct ad5791_state
*st
= iio_priv(indio_dev
);
441 iio_device_unregister(indio_dev
);
442 if (!IS_ERR(st
->reg_vdd
))
443 regulator_disable(st
->reg_vdd
);
445 if (!IS_ERR(st
->reg_vss
))
446 regulator_disable(st
->reg_vss
);
451 static const struct spi_device_id ad5791_id
[] = {
452 {"ad5760", ID_AD5760
},
453 {"ad5780", ID_AD5780
},
454 {"ad5781", ID_AD5781
},
455 {"ad5790", ID_AD5791
},
456 {"ad5791", ID_AD5791
},
459 MODULE_DEVICE_TABLE(spi
, ad5791_id
);
461 static struct spi_driver ad5791_driver
= {
464 .owner
= THIS_MODULE
,
466 .probe
= ad5791_probe
,
467 .remove
= ad5791_remove
,
468 .id_table
= ad5791_id
,
470 module_spi_driver(ad5791_driver
);
472 MODULE_AUTHOR("Michael Hennerich <hennerich@blackfin.uclinux.org>");
473 MODULE_DESCRIPTION("Analog Devices AD5760/AD5780/AD5781/AD5790/AD5791 DAC");
474 MODULE_LICENSE("GPL v2");