1 // SPDX-License-Identifier: GPL-2.0-only
3 * AD5760, AD5780, AD5781, AD5790, AD5791 Voltage Output Digital to Analog
6 * Copyright 2011 Analog Devices Inc.
9 #include <linux/interrupt.h>
11 #include <linux/device.h>
12 #include <linux/kernel.h>
13 #include <linux/spi/spi.h>
14 #include <linux/slab.h>
15 #include <linux/sysfs.h>
16 #include <linux/regulator/consumer.h>
17 #include <linux/module.h>
18 #include <linux/bitops.h>
20 #include <linux/iio/iio.h>
21 #include <linux/iio/sysfs.h>
22 #include <linux/iio/dac/ad5791.h>
24 #define AD5791_DAC_MASK GENMASK(19, 0)
26 #define AD5791_CMD_READ BIT(23)
27 #define AD5791_CMD_WRITE 0
28 #define AD5791_ADDR(addr) ((addr) << 20)
31 #define AD5791_ADDR_NOOP 0
32 #define AD5791_ADDR_DAC0 1
33 #define AD5791_ADDR_CTRL 2
34 #define AD5791_ADDR_CLRCODE 3
35 #define AD5791_ADDR_SW_CTRL 4
37 /* Control Register */
38 #define AD5791_CTRL_RBUF BIT(1)
39 #define AD5791_CTRL_OPGND BIT(2)
40 #define AD5791_CTRL_DACTRI BIT(3)
41 #define AD5791_CTRL_BIN2SC BIT(4)
42 #define AD5791_CTRL_SDODIS BIT(5)
43 #define AD5761_CTRL_LINCOMP(x) ((x) << 6)
45 #define AD5791_LINCOMP_0_10 0
46 #define AD5791_LINCOMP_10_12 1
47 #define AD5791_LINCOMP_12_16 2
48 #define AD5791_LINCOMP_16_19 3
49 #define AD5791_LINCOMP_19_20 12
51 #define AD5780_LINCOMP_0_10 0
52 #define AD5780_LINCOMP_10_20 12
54 /* Software Control Register */
55 #define AD5791_SWCTRL_LDAC BIT(0)
56 #define AD5791_SWCTRL_CLR BIT(1)
57 #define AD5791_SWCTRL_RESET BIT(2)
59 #define AD5791_DAC_PWRDN_6K 0
60 #define AD5791_DAC_PWRDN_3STATE 1
63 * struct ad5791_chip_info - chip specific information
64 * @get_lin_comp: function pointer to the device specific function
67 struct ad5791_chip_info
{
68 int (*get_lin_comp
) (unsigned int span
);
72 * struct ad5791_state - driver instance specific data
74 * @reg_vdd: positive supply regulator
75 * @reg_vss: negative supply regulator
76 * @chip_info: chip model specific constants
77 * @vref_mv: actual reference voltage used
78 * @vref_neg_mv: voltage of the negative supply
79 * @pwr_down_mode current power down mode
83 struct spi_device
*spi
;
84 struct regulator
*reg_vdd
;
85 struct regulator
*reg_vss
;
86 const struct ad5791_chip_info
*chip_info
;
87 unsigned short vref_mv
;
88 unsigned int vref_neg_mv
;
90 unsigned pwr_down_mode
;
96 } data
[3] ____cacheline_aligned
;
100 * ad5791_supported_device_ids:
103 enum ad5791_supported_device_ids
{
110 static int ad5791_spi_write(struct ad5791_state
*st
, u8 addr
, u32 val
)
112 st
->data
[0].d32
= cpu_to_be32(AD5791_CMD_WRITE
|
114 (val
& AD5791_DAC_MASK
));
116 return spi_write(st
->spi
, &st
->data
[0].d8
[1], 3);
119 static int ad5791_spi_read(struct ad5791_state
*st
, u8 addr
, u32
*val
)
122 struct spi_transfer xfers
[] = {
124 .tx_buf
= &st
->data
[0].d8
[1],
129 .tx_buf
= &st
->data
[1].d8
[1],
130 .rx_buf
= &st
->data
[2].d8
[1],
136 st
->data
[0].d32
= cpu_to_be32(AD5791_CMD_READ
|
138 st
->data
[1].d32
= cpu_to_be32(AD5791_ADDR(AD5791_ADDR_NOOP
));
140 ret
= spi_sync_transfer(st
->spi
, xfers
, ARRAY_SIZE(xfers
));
142 *val
= be32_to_cpu(st
->data
[2].d32
);
147 static const char * const ad5791_powerdown_modes
[] = {
152 static int ad5791_get_powerdown_mode(struct iio_dev
*indio_dev
,
153 const struct iio_chan_spec
*chan
)
155 struct ad5791_state
*st
= iio_priv(indio_dev
);
157 return st
->pwr_down_mode
;
160 static int ad5791_set_powerdown_mode(struct iio_dev
*indio_dev
,
161 const struct iio_chan_spec
*chan
, unsigned int mode
)
163 struct ad5791_state
*st
= iio_priv(indio_dev
);
165 st
->pwr_down_mode
= mode
;
170 static const struct iio_enum ad5791_powerdown_mode_enum
= {
171 .items
= ad5791_powerdown_modes
,
172 .num_items
= ARRAY_SIZE(ad5791_powerdown_modes
),
173 .get
= ad5791_get_powerdown_mode
,
174 .set
= ad5791_set_powerdown_mode
,
177 static ssize_t
ad5791_read_dac_powerdown(struct iio_dev
*indio_dev
,
178 uintptr_t private, const struct iio_chan_spec
*chan
, char *buf
)
180 struct ad5791_state
*st
= iio_priv(indio_dev
);
182 return sprintf(buf
, "%d\n", st
->pwr_down
);
185 static ssize_t
ad5791_write_dac_powerdown(struct iio_dev
*indio_dev
,
186 uintptr_t private, const struct iio_chan_spec
*chan
, const char *buf
,
191 struct ad5791_state
*st
= iio_priv(indio_dev
);
193 ret
= strtobool(buf
, &pwr_down
);
198 st
->ctrl
&= ~(AD5791_CTRL_OPGND
| AD5791_CTRL_DACTRI
);
200 if (st
->pwr_down_mode
== AD5791_DAC_PWRDN_6K
)
201 st
->ctrl
|= AD5791_CTRL_OPGND
;
202 else if (st
->pwr_down_mode
== AD5791_DAC_PWRDN_3STATE
)
203 st
->ctrl
|= AD5791_CTRL_DACTRI
;
205 st
->pwr_down
= pwr_down
;
207 ret
= ad5791_spi_write(st
, AD5791_ADDR_CTRL
, st
->ctrl
);
209 return ret
? ret
: len
;
212 static int ad5791_get_lin_comp(unsigned int span
)
215 return AD5791_LINCOMP_0_10
;
216 else if (span
<= 12000)
217 return AD5791_LINCOMP_10_12
;
218 else if (span
<= 16000)
219 return AD5791_LINCOMP_12_16
;
220 else if (span
<= 19000)
221 return AD5791_LINCOMP_16_19
;
223 return AD5791_LINCOMP_19_20
;
226 static int ad5780_get_lin_comp(unsigned int span
)
229 return AD5780_LINCOMP_0_10
;
231 return AD5780_LINCOMP_10_20
;
233 static const struct ad5791_chip_info ad5791_chip_info_tbl
[] = {
235 .get_lin_comp
= ad5780_get_lin_comp
,
238 .get_lin_comp
= ad5780_get_lin_comp
,
241 .get_lin_comp
= ad5791_get_lin_comp
,
244 .get_lin_comp
= ad5791_get_lin_comp
,
248 static int ad5791_read_raw(struct iio_dev
*indio_dev
,
249 struct iio_chan_spec
const *chan
,
254 struct ad5791_state
*st
= iio_priv(indio_dev
);
259 case IIO_CHAN_INFO_RAW
:
260 ret
= ad5791_spi_read(st
, chan
->address
, val
);
263 *val
&= AD5791_DAC_MASK
;
264 *val
>>= chan
->scan_type
.shift
;
266 case IIO_CHAN_INFO_SCALE
:
268 *val2
= (1 << chan
->scan_type
.realbits
) - 1;
269 return IIO_VAL_FRACTIONAL
;
270 case IIO_CHAN_INFO_OFFSET
:
271 val64
= (((u64
)st
->vref_neg_mv
) << chan
->scan_type
.realbits
);
272 do_div(val64
, st
->vref_mv
);
281 static const struct iio_chan_spec_ext_info ad5791_ext_info
[] = {
284 .shared
= IIO_SHARED_BY_TYPE
,
285 .read
= ad5791_read_dac_powerdown
,
286 .write
= ad5791_write_dac_powerdown
,
288 IIO_ENUM("powerdown_mode", IIO_SHARED_BY_TYPE
,
289 &ad5791_powerdown_mode_enum
),
290 IIO_ENUM_AVAILABLE("powerdown_mode", &ad5791_powerdown_mode_enum
),
294 #define AD5791_CHAN(bits, _shift) { \
295 .type = IIO_VOLTAGE, \
298 .address = AD5791_ADDR_DAC0, \
300 .info_mask_separate = BIT(IIO_CHAN_INFO_RAW), \
301 .info_mask_shared_by_type = BIT(IIO_CHAN_INFO_SCALE) | \
302 BIT(IIO_CHAN_INFO_OFFSET), \
305 .realbits = (bits), \
309 .ext_info = ad5791_ext_info, \
312 static 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)
319 static int ad5791_write_raw(struct iio_dev
*indio_dev
,
320 struct iio_chan_spec
const *chan
,
325 struct ad5791_state
*st
= iio_priv(indio_dev
);
328 case IIO_CHAN_INFO_RAW
:
329 val
&= GENMASK(chan
->scan_type
.realbits
- 1, 0);
330 val
<<= chan
->scan_type
.shift
;
332 return ad5791_spi_write(st
, chan
->address
, val
);
339 static const struct iio_info ad5791_info
= {
340 .read_raw
= &ad5791_read_raw
,
341 .write_raw
= &ad5791_write_raw
,
344 static int ad5791_probe(struct spi_device
*spi
)
346 struct ad5791_platform_data
*pdata
= spi
->dev
.platform_data
;
347 struct iio_dev
*indio_dev
;
348 struct ad5791_state
*st
;
349 int ret
, pos_voltage_uv
= 0, neg_voltage_uv
= 0;
351 indio_dev
= devm_iio_device_alloc(&spi
->dev
, sizeof(*st
));
354 st
= iio_priv(indio_dev
);
355 st
->reg_vdd
= devm_regulator_get(&spi
->dev
, "vdd");
356 if (!IS_ERR(st
->reg_vdd
)) {
357 ret
= regulator_enable(st
->reg_vdd
);
361 ret
= regulator_get_voltage(st
->reg_vdd
);
363 goto error_disable_reg_pos
;
365 pos_voltage_uv
= ret
;
368 st
->reg_vss
= devm_regulator_get(&spi
->dev
, "vss");
369 if (!IS_ERR(st
->reg_vss
)) {
370 ret
= regulator_enable(st
->reg_vss
);
372 goto error_disable_reg_pos
;
374 ret
= regulator_get_voltage(st
->reg_vss
);
376 goto error_disable_reg_neg
;
378 neg_voltage_uv
= ret
;
384 if (!IS_ERR(st
->reg_vss
) && !IS_ERR(st
->reg_vdd
)) {
385 st
->vref_mv
= (pos_voltage_uv
+ neg_voltage_uv
) / 1000;
386 st
->vref_neg_mv
= neg_voltage_uv
/ 1000;
388 st
->vref_mv
= pdata
->vref_pos_mv
+ pdata
->vref_neg_mv
;
389 st
->vref_neg_mv
= pdata
->vref_neg_mv
;
391 dev_warn(&spi
->dev
, "reference voltage unspecified\n");
394 ret
= ad5791_spi_write(st
, AD5791_ADDR_SW_CTRL
, AD5791_SWCTRL_RESET
);
396 goto error_disable_reg_neg
;
398 st
->chip_info
= &ad5791_chip_info_tbl
[spi_get_device_id(spi
)
402 st
->ctrl
= AD5761_CTRL_LINCOMP(st
->chip_info
->get_lin_comp(st
->vref_mv
))
403 | ((pdata
&& pdata
->use_rbuf_gain2
) ? 0 : AD5791_CTRL_RBUF
) |
406 ret
= ad5791_spi_write(st
, AD5791_ADDR_CTRL
, st
->ctrl
|
407 AD5791_CTRL_OPGND
| AD5791_CTRL_DACTRI
);
409 goto error_disable_reg_neg
;
411 spi_set_drvdata(spi
, indio_dev
);
412 indio_dev
->dev
.parent
= &spi
->dev
;
413 indio_dev
->info
= &ad5791_info
;
414 indio_dev
->modes
= INDIO_DIRECT_MODE
;
416 = &ad5791_channels
[spi_get_device_id(spi
)->driver_data
];
417 indio_dev
->num_channels
= 1;
418 indio_dev
->name
= spi_get_device_id(st
->spi
)->name
;
419 ret
= iio_device_register(indio_dev
);
421 goto error_disable_reg_neg
;
425 error_disable_reg_neg
:
426 if (!IS_ERR(st
->reg_vss
))
427 regulator_disable(st
->reg_vss
);
428 error_disable_reg_pos
:
429 if (!IS_ERR(st
->reg_vdd
))
430 regulator_disable(st
->reg_vdd
);
434 static int ad5791_remove(struct spi_device
*spi
)
436 struct iio_dev
*indio_dev
= spi_get_drvdata(spi
);
437 struct ad5791_state
*st
= iio_priv(indio_dev
);
439 iio_device_unregister(indio_dev
);
440 if (!IS_ERR(st
->reg_vdd
))
441 regulator_disable(st
->reg_vdd
);
443 if (!IS_ERR(st
->reg_vss
))
444 regulator_disable(st
->reg_vss
);
449 static const struct spi_device_id ad5791_id
[] = {
450 {"ad5760", ID_AD5760
},
451 {"ad5780", ID_AD5780
},
452 {"ad5781", ID_AD5781
},
453 {"ad5790", ID_AD5791
},
454 {"ad5791", ID_AD5791
},
457 MODULE_DEVICE_TABLE(spi
, ad5791_id
);
459 static struct spi_driver ad5791_driver
= {
463 .probe
= ad5791_probe
,
464 .remove
= ad5791_remove
,
465 .id_table
= ad5791_id
,
467 module_spi_driver(ad5791_driver
);
469 MODULE_AUTHOR("Michael Hennerich <michael.hennerich@analog.com>");
470 MODULE_DESCRIPTION("Analog Devices AD5760/AD5780/AD5781/AD5790/AD5791 DAC");
471 MODULE_LICENSE("GPL v2");