2 * AD5024, AD5025, AD5044, AD5045, AD5064, AD5064-1, AD5065, AD5625, AD5625R,
3 * AD5627, AD5627R, AD5628, AD5629R, AD5645R, AD5647R, AD5648, AD5665, AD5665R,
4 * AD5666, AD5667, AD5667R, AD5668, AD5669R, LTC2606, LTC2607, LTC2609, LTC2616,
5 * LTC2617, LTC2619, LTC2626, LTC2627, LTC2629, LTC2631, LTC2633, LTC2635
6 * Digital to analog converters driver
8 * Copyright 2011 Analog Devices Inc.
10 * Licensed under the GPL-2.
13 #include <linux/device.h>
14 #include <linux/err.h>
15 #include <linux/module.h>
16 #include <linux/kernel.h>
17 #include <linux/spi/spi.h>
18 #include <linux/i2c.h>
19 #include <linux/slab.h>
20 #include <linux/sysfs.h>
21 #include <linux/regulator/consumer.h>
22 #include <asm/unaligned.h>
24 #include <linux/iio/iio.h>
25 #include <linux/iio/sysfs.h>
27 #define AD5064_MAX_DAC_CHANNELS 8
28 #define AD5064_MAX_VREFS 4
30 #define AD5064_ADDR(x) ((x) << 20)
31 #define AD5064_CMD(x) ((x) << 24)
33 #define AD5064_ADDR_ALL_DAC 0xF
35 #define AD5064_CMD_WRITE_INPUT_N 0x0
36 #define AD5064_CMD_UPDATE_DAC_N 0x1
37 #define AD5064_CMD_WRITE_INPUT_N_UPDATE_ALL 0x2
38 #define AD5064_CMD_WRITE_INPUT_N_UPDATE_N 0x3
39 #define AD5064_CMD_POWERDOWN_DAC 0x4
40 #define AD5064_CMD_CLEAR 0x5
41 #define AD5064_CMD_LDAC_MASK 0x6
42 #define AD5064_CMD_RESET 0x7
43 #define AD5064_CMD_CONFIG 0x8
45 #define AD5064_CMD_RESET_V2 0x5
46 #define AD5064_CMD_CONFIG_V2 0x7
48 #define AD5064_CONFIG_DAISY_CHAIN_ENABLE BIT(1)
49 #define AD5064_CONFIG_INT_VREF_ENABLE BIT(0)
51 #define AD5064_LDAC_PWRDN_NONE 0x0
52 #define AD5064_LDAC_PWRDN_1K 0x1
53 #define AD5064_LDAC_PWRDN_100K 0x2
54 #define AD5064_LDAC_PWRDN_3STATE 0x3
57 * enum ad5064_regmap_type - Register layout variant
58 * @AD5064_REGMAP_ADI: Old Analog Devices register map layout
59 * @AD5064_REGMAP_ADI2: New Analog Devices register map layout
60 * @AD5064_REGMAP_LTC: LTC register map layout
62 enum ad5064_regmap_type
{
69 * struct ad5064_chip_info - chip specific information
70 * @shared_vref: whether the vref supply is shared between channels
71 * @internal_vref: internal reference voltage. 0 if the chip has no
73 * @channel: channel specification
74 * @num_channels: number of channels
75 * @regmap_type: register map layout variant
78 struct ad5064_chip_info
{
80 unsigned long internal_vref
;
81 const struct iio_chan_spec
*channels
;
82 unsigned int num_channels
;
83 enum ad5064_regmap_type regmap_type
;
88 typedef int (*ad5064_write_func
)(struct ad5064_state
*st
, unsigned int cmd
,
89 unsigned int addr
, unsigned int val
);
92 * struct ad5064_state - driver instance specific data
93 * @dev: the device for this driver instance
94 * @chip_info: chip model specific constants, available modes etc
95 * @vref_reg: vref supply regulators
96 * @pwr_down: whether channel is powered down
97 * @pwr_down_mode: channel's current power down mode
98 * @dac_cache: current DAC raw value (chip does not support readback)
99 * @use_internal_vref: set to true if the internal reference voltage should be
101 * @write: register write callback
102 * @data: i2c/spi transfer buffers
105 struct ad5064_state
{
107 const struct ad5064_chip_info
*chip_info
;
108 struct regulator_bulk_data vref_reg
[AD5064_MAX_VREFS
];
109 bool pwr_down
[AD5064_MAX_DAC_CHANNELS
];
110 u8 pwr_down_mode
[AD5064_MAX_DAC_CHANNELS
];
111 unsigned int dac_cache
[AD5064_MAX_DAC_CHANNELS
];
112 bool use_internal_vref
;
114 ad5064_write_func write
;
117 * DMA (thus cache coherency maintenance) requires the
118 * transfer buffers to live in their own cache lines.
123 } data ____cacheline_aligned
;
191 static int ad5064_write(struct ad5064_state
*st
, unsigned int cmd
,
192 unsigned int addr
, unsigned int val
, unsigned int shift
)
196 return st
->write(st
, cmd
, addr
, val
);
199 static int ad5064_sync_powerdown_mode(struct ad5064_state
*st
,
200 const struct iio_chan_spec
*chan
)
202 unsigned int val
, address
;
206 if (st
->chip_info
->regmap_type
== AD5064_REGMAP_LTC
) {
208 address
= chan
->address
;
210 if (st
->chip_info
->regmap_type
== AD5064_REGMAP_ADI2
)
215 val
= (0x1 << chan
->address
);
218 if (st
->pwr_down
[chan
->channel
])
219 val
|= st
->pwr_down_mode
[chan
->channel
] << shift
;
222 ret
= ad5064_write(st
, AD5064_CMD_POWERDOWN_DAC
, address
, val
, 0);
227 static const char * const ad5064_powerdown_modes
[] = {
233 static const char * const ltc2617_powerdown_modes
[] = {
237 static int ad5064_get_powerdown_mode(struct iio_dev
*indio_dev
,
238 const struct iio_chan_spec
*chan
)
240 struct ad5064_state
*st
= iio_priv(indio_dev
);
242 return st
->pwr_down_mode
[chan
->channel
] - 1;
245 static int ad5064_set_powerdown_mode(struct iio_dev
*indio_dev
,
246 const struct iio_chan_spec
*chan
, unsigned int mode
)
248 struct ad5064_state
*st
= iio_priv(indio_dev
);
251 mutex_lock(&indio_dev
->mlock
);
252 st
->pwr_down_mode
[chan
->channel
] = mode
+ 1;
254 ret
= ad5064_sync_powerdown_mode(st
, chan
);
255 mutex_unlock(&indio_dev
->mlock
);
260 static const struct iio_enum ad5064_powerdown_mode_enum
= {
261 .items
= ad5064_powerdown_modes
,
262 .num_items
= ARRAY_SIZE(ad5064_powerdown_modes
),
263 .get
= ad5064_get_powerdown_mode
,
264 .set
= ad5064_set_powerdown_mode
,
267 static const struct iio_enum ltc2617_powerdown_mode_enum
= {
268 .items
= ltc2617_powerdown_modes
,
269 .num_items
= ARRAY_SIZE(ltc2617_powerdown_modes
),
270 .get
= ad5064_get_powerdown_mode
,
271 .set
= ad5064_set_powerdown_mode
,
274 static ssize_t
ad5064_read_dac_powerdown(struct iio_dev
*indio_dev
,
275 uintptr_t private, const struct iio_chan_spec
*chan
, char *buf
)
277 struct ad5064_state
*st
= iio_priv(indio_dev
);
279 return sprintf(buf
, "%d\n", st
->pwr_down
[chan
->channel
]);
282 static ssize_t
ad5064_write_dac_powerdown(struct iio_dev
*indio_dev
,
283 uintptr_t private, const struct iio_chan_spec
*chan
, const char *buf
,
286 struct ad5064_state
*st
= iio_priv(indio_dev
);
290 ret
= strtobool(buf
, &pwr_down
);
294 mutex_lock(&indio_dev
->mlock
);
295 st
->pwr_down
[chan
->channel
] = pwr_down
;
297 ret
= ad5064_sync_powerdown_mode(st
, chan
);
298 mutex_unlock(&indio_dev
->mlock
);
299 return ret
? ret
: len
;
302 static int ad5064_get_vref(struct ad5064_state
*st
,
303 struct iio_chan_spec
const *chan
)
307 if (st
->use_internal_vref
)
308 return st
->chip_info
->internal_vref
;
310 i
= st
->chip_info
->shared_vref
? 0 : chan
->channel
;
311 return regulator_get_voltage(st
->vref_reg
[i
].consumer
);
314 static int ad5064_read_raw(struct iio_dev
*indio_dev
,
315 struct iio_chan_spec
const *chan
,
320 struct ad5064_state
*st
= iio_priv(indio_dev
);
324 case IIO_CHAN_INFO_RAW
:
325 *val
= st
->dac_cache
[chan
->channel
];
327 case IIO_CHAN_INFO_SCALE
:
328 scale_uv
= ad5064_get_vref(st
, chan
);
332 *val
= scale_uv
/ 1000;
333 *val2
= chan
->scan_type
.realbits
;
334 return IIO_VAL_FRACTIONAL_LOG2
;
341 static int ad5064_write_raw(struct iio_dev
*indio_dev
,
342 struct iio_chan_spec
const *chan
, int val
, int val2
, long mask
)
344 struct ad5064_state
*st
= iio_priv(indio_dev
);
348 case IIO_CHAN_INFO_RAW
:
349 if (val
>= (1 << chan
->scan_type
.realbits
) || val
< 0)
352 mutex_lock(&indio_dev
->mlock
);
353 ret
= ad5064_write(st
, AD5064_CMD_WRITE_INPUT_N_UPDATE_N
,
354 chan
->address
, val
, chan
->scan_type
.shift
);
356 st
->dac_cache
[chan
->channel
] = val
;
357 mutex_unlock(&indio_dev
->mlock
);
366 static const struct iio_info ad5064_info
= {
367 .read_raw
= ad5064_read_raw
,
368 .write_raw
= ad5064_write_raw
,
369 .driver_module
= THIS_MODULE
,
372 static const struct iio_chan_spec_ext_info ad5064_ext_info
[] = {
375 .read
= ad5064_read_dac_powerdown
,
376 .write
= ad5064_write_dac_powerdown
,
377 .shared
= IIO_SEPARATE
,
379 IIO_ENUM("powerdown_mode", IIO_SEPARATE
, &ad5064_powerdown_mode_enum
),
380 IIO_ENUM_AVAILABLE("powerdown_mode", &ad5064_powerdown_mode_enum
),
384 static const struct iio_chan_spec_ext_info ltc2617_ext_info
[] = {
387 .read
= ad5064_read_dac_powerdown
,
388 .write
= ad5064_write_dac_powerdown
,
389 .shared
= IIO_SEPARATE
,
391 IIO_ENUM("powerdown_mode", IIO_SEPARATE
, <c2617_powerdown_mode_enum
),
392 IIO_ENUM_AVAILABLE("powerdown_mode", <c2617_powerdown_mode_enum
),
396 #define AD5064_CHANNEL(chan, addr, bits, _shift, _ext_info) { \
397 .type = IIO_VOLTAGE, \
401 .info_mask_separate = BIT(IIO_CHAN_INFO_RAW) | \
402 BIT(IIO_CHAN_INFO_SCALE), \
406 .realbits = (bits), \
410 .ext_info = (_ext_info), \
413 #define DECLARE_AD5064_CHANNELS(name, bits, shift, ext_info) \
414 const struct iio_chan_spec name[] = { \
415 AD5064_CHANNEL(0, 0, bits, shift, ext_info), \
416 AD5064_CHANNEL(1, 1, bits, shift, ext_info), \
417 AD5064_CHANNEL(2, 2, bits, shift, ext_info), \
418 AD5064_CHANNEL(3, 3, bits, shift, ext_info), \
419 AD5064_CHANNEL(4, 4, bits, shift, ext_info), \
420 AD5064_CHANNEL(5, 5, bits, shift, ext_info), \
421 AD5064_CHANNEL(6, 6, bits, shift, ext_info), \
422 AD5064_CHANNEL(7, 7, bits, shift, ext_info), \
425 #define DECLARE_AD5065_CHANNELS(name, bits, shift, ext_info) \
426 const struct iio_chan_spec name[] = { \
427 AD5064_CHANNEL(0, 0, bits, shift, ext_info), \
428 AD5064_CHANNEL(1, 3, bits, shift, ext_info), \
431 static DECLARE_AD5064_CHANNELS(ad5024_channels
, 12, 8, ad5064_ext_info
);
432 static DECLARE_AD5064_CHANNELS(ad5044_channels
, 14, 6, ad5064_ext_info
);
433 static DECLARE_AD5064_CHANNELS(ad5064_channels
, 16, 4, ad5064_ext_info
);
435 static DECLARE_AD5065_CHANNELS(ad5025_channels
, 12, 8, ad5064_ext_info
);
436 static DECLARE_AD5065_CHANNELS(ad5045_channels
, 14, 6, ad5064_ext_info
);
437 static DECLARE_AD5065_CHANNELS(ad5065_channels
, 16, 4, ad5064_ext_info
);
439 static DECLARE_AD5064_CHANNELS(ad5629_channels
, 12, 4, ad5064_ext_info
);
440 static DECLARE_AD5064_CHANNELS(ad5645_channels
, 14, 2, ad5064_ext_info
);
441 static DECLARE_AD5064_CHANNELS(ad5669_channels
, 16, 0, ad5064_ext_info
);
443 static DECLARE_AD5064_CHANNELS(ltc2607_channels
, 16, 0, ltc2617_ext_info
);
444 static DECLARE_AD5064_CHANNELS(ltc2617_channels
, 14, 2, ltc2617_ext_info
);
445 static DECLARE_AD5064_CHANNELS(ltc2627_channels
, 12, 4, ltc2617_ext_info
);
446 #define ltc2631_12_channels ltc2627_channels
447 static DECLARE_AD5064_CHANNELS(ltc2631_10_channels
, 10, 6, ltc2617_ext_info
);
448 static DECLARE_AD5064_CHANNELS(ltc2631_8_channels
, 8, 8, ltc2617_ext_info
);
450 #define LTC2631_INFO(vref, pchannels, nchannels) \
452 .shared_vref = true, \
453 .internal_vref = vref, \
454 .channels = pchannels, \
455 .num_channels = nchannels, \
456 .regmap_type = AD5064_REGMAP_LTC, \
460 static const struct ad5064_chip_info ad5064_chip_info_tbl
[] = {
462 .shared_vref
= false,
463 .channels
= ad5024_channels
,
465 .regmap_type
= AD5064_REGMAP_ADI
,
468 .shared_vref
= false,
469 .channels
= ad5025_channels
,
471 .regmap_type
= AD5064_REGMAP_ADI
,
474 .shared_vref
= false,
475 .channels
= ad5044_channels
,
477 .regmap_type
= AD5064_REGMAP_ADI
,
480 .shared_vref
= false,
481 .channels
= ad5045_channels
,
483 .regmap_type
= AD5064_REGMAP_ADI
,
486 .shared_vref
= false,
487 .channels
= ad5064_channels
,
489 .regmap_type
= AD5064_REGMAP_ADI
,
493 .channels
= ad5064_channels
,
495 .regmap_type
= AD5064_REGMAP_ADI
,
498 .shared_vref
= false,
499 .channels
= ad5065_channels
,
501 .regmap_type
= AD5064_REGMAP_ADI
,
505 .channels
= ad5629_channels
,
507 .regmap_type
= AD5064_REGMAP_ADI2
509 [ID_AD5625R_1V25
] = {
511 .internal_vref
= 1250000,
512 .channels
= ad5629_channels
,
514 .regmap_type
= AD5064_REGMAP_ADI2
518 .internal_vref
= 2500000,
519 .channels
= ad5629_channels
,
521 .regmap_type
= AD5064_REGMAP_ADI2
525 .channels
= ad5629_channels
,
527 .regmap_type
= AD5064_REGMAP_ADI2
529 [ID_AD5627R_1V25
] = {
531 .internal_vref
= 1250000,
532 .channels
= ad5629_channels
,
534 .regmap_type
= AD5064_REGMAP_ADI2
538 .internal_vref
= 2500000,
539 .channels
= ad5629_channels
,
541 .regmap_type
= AD5064_REGMAP_ADI2
545 .internal_vref
= 2500000,
546 .channels
= ad5024_channels
,
548 .regmap_type
= AD5064_REGMAP_ADI
,
552 .internal_vref
= 5000000,
553 .channels
= ad5024_channels
,
555 .regmap_type
= AD5064_REGMAP_ADI
,
559 .internal_vref
= 2500000,
560 .channels
= ad5629_channels
,
562 .regmap_type
= AD5064_REGMAP_ADI
,
566 .internal_vref
= 5000000,
567 .channels
= ad5629_channels
,
569 .regmap_type
= AD5064_REGMAP_ADI
,
571 [ID_AD5645R_1V25
] = {
573 .internal_vref
= 1250000,
574 .channels
= ad5645_channels
,
576 .regmap_type
= AD5064_REGMAP_ADI2
580 .internal_vref
= 2500000,
581 .channels
= ad5645_channels
,
583 .regmap_type
= AD5064_REGMAP_ADI2
585 [ID_AD5647R_1V25
] = {
587 .internal_vref
= 1250000,
588 .channels
= ad5645_channels
,
590 .regmap_type
= AD5064_REGMAP_ADI2
594 .internal_vref
= 2500000,
595 .channels
= ad5645_channels
,
597 .regmap_type
= AD5064_REGMAP_ADI2
601 .internal_vref
= 2500000,
602 .channels
= ad5044_channels
,
604 .regmap_type
= AD5064_REGMAP_ADI
,
608 .internal_vref
= 5000000,
609 .channels
= ad5044_channels
,
611 .regmap_type
= AD5064_REGMAP_ADI
,
615 .channels
= ad5669_channels
,
617 .regmap_type
= AD5064_REGMAP_ADI2
619 [ID_AD5665R_1V25
] = {
621 .internal_vref
= 1250000,
622 .channels
= ad5669_channels
,
624 .regmap_type
= AD5064_REGMAP_ADI2
628 .internal_vref
= 2500000,
629 .channels
= ad5669_channels
,
631 .regmap_type
= AD5064_REGMAP_ADI2
635 .internal_vref
= 2500000,
636 .channels
= ad5064_channels
,
638 .regmap_type
= AD5064_REGMAP_ADI
,
642 .internal_vref
= 5000000,
643 .channels
= ad5064_channels
,
645 .regmap_type
= AD5064_REGMAP_ADI
,
649 .channels
= ad5669_channels
,
651 .regmap_type
= AD5064_REGMAP_ADI2
653 [ID_AD5667R_1V25
] = {
655 .internal_vref
= 1250000,
656 .channels
= ad5669_channels
,
658 .regmap_type
= AD5064_REGMAP_ADI2
662 .internal_vref
= 2500000,
663 .channels
= ad5669_channels
,
665 .regmap_type
= AD5064_REGMAP_ADI2
669 .internal_vref
= 2500000,
670 .channels
= ad5064_channels
,
672 .regmap_type
= AD5064_REGMAP_ADI
,
676 .internal_vref
= 5000000,
677 .channels
= ad5064_channels
,
679 .regmap_type
= AD5064_REGMAP_ADI
,
683 .internal_vref
= 2500000,
684 .channels
= ad5669_channels
,
686 .regmap_type
= AD5064_REGMAP_ADI
,
690 .internal_vref
= 5000000,
691 .channels
= ad5669_channels
,
693 .regmap_type
= AD5064_REGMAP_ADI
,
698 .channels
= ltc2607_channels
,
700 .regmap_type
= AD5064_REGMAP_LTC
,
705 .channels
= ltc2607_channels
,
707 .regmap_type
= AD5064_REGMAP_LTC
,
710 .shared_vref
= false,
712 .channels
= ltc2607_channels
,
714 .regmap_type
= AD5064_REGMAP_LTC
,
719 .channels
= ltc2617_channels
,
721 .regmap_type
= AD5064_REGMAP_LTC
,
726 .channels
= ltc2617_channels
,
728 .regmap_type
= AD5064_REGMAP_LTC
,
731 .shared_vref
= false,
733 .channels
= ltc2617_channels
,
735 .regmap_type
= AD5064_REGMAP_LTC
,
740 .channels
= ltc2627_channels
,
742 .regmap_type
= AD5064_REGMAP_LTC
,
747 .channels
= ltc2627_channels
,
749 .regmap_type
= AD5064_REGMAP_LTC
,
752 .shared_vref
= false,
754 .channels
= ltc2627_channels
,
756 .regmap_type
= AD5064_REGMAP_LTC
,
758 [ID_LTC2631_L12
] = LTC2631_INFO(2500000, ltc2631_12_channels
, 1),
759 [ID_LTC2631_H12
] = LTC2631_INFO(4096000, ltc2631_12_channels
, 1),
760 [ID_LTC2631_L10
] = LTC2631_INFO(2500000, ltc2631_10_channels
, 1),
761 [ID_LTC2631_H10
] = LTC2631_INFO(4096000, ltc2631_10_channels
, 1),
762 [ID_LTC2631_L8
] = LTC2631_INFO(2500000, ltc2631_8_channels
, 1),
763 [ID_LTC2631_H8
] = LTC2631_INFO(4096000, ltc2631_8_channels
, 1),
764 [ID_LTC2633_L12
] = LTC2631_INFO(2500000, ltc2631_12_channels
, 2),
765 [ID_LTC2633_H12
] = LTC2631_INFO(4096000, ltc2631_12_channels
, 2),
766 [ID_LTC2633_L10
] = LTC2631_INFO(2500000, ltc2631_10_channels
, 2),
767 [ID_LTC2633_H10
] = LTC2631_INFO(4096000, ltc2631_10_channels
, 2),
768 [ID_LTC2633_L8
] = LTC2631_INFO(2500000, ltc2631_8_channels
, 2),
769 [ID_LTC2633_H8
] = LTC2631_INFO(4096000, ltc2631_8_channels
, 2),
770 [ID_LTC2635_L12
] = LTC2631_INFO(2500000, ltc2631_12_channels
, 4),
771 [ID_LTC2635_H12
] = LTC2631_INFO(4096000, ltc2631_12_channels
, 4),
772 [ID_LTC2635_L10
] = LTC2631_INFO(2500000, ltc2631_10_channels
, 4),
773 [ID_LTC2635_H10
] = LTC2631_INFO(4096000, ltc2631_10_channels
, 4),
774 [ID_LTC2635_L8
] = LTC2631_INFO(2500000, ltc2631_8_channels
, 4),
775 [ID_LTC2635_H8
] = LTC2631_INFO(4096000, ltc2631_8_channels
, 4),
778 static inline unsigned int ad5064_num_vref(struct ad5064_state
*st
)
780 return st
->chip_info
->shared_vref
? 1 : st
->chip_info
->num_channels
;
783 static const char * const ad5064_vref_names
[] = {
790 static const char * const ad5064_vref_name(struct ad5064_state
*st
,
793 return st
->chip_info
->shared_vref
? "vref" : ad5064_vref_names
[vref
];
796 static int ad5064_set_config(struct ad5064_state
*st
, unsigned int val
)
800 switch (st
->chip_info
->regmap_type
) {
801 case AD5064_REGMAP_ADI2
:
802 cmd
= AD5064_CMD_CONFIG_V2
;
805 cmd
= AD5064_CMD_CONFIG
;
809 return ad5064_write(st
, cmd
, 0, val
, 0);
812 static int ad5064_request_vref(struct ad5064_state
*st
, struct device
*dev
)
817 for (i
= 0; i
< ad5064_num_vref(st
); ++i
)
818 st
->vref_reg
[i
].supply
= ad5064_vref_name(st
, i
);
820 if (!st
->chip_info
->internal_vref
)
821 return devm_regulator_bulk_get(dev
, ad5064_num_vref(st
),
825 * This assumes that when the regulator has an internal VREF
826 * there is only one external VREF connection, which is
827 * currently the case for all supported devices.
829 st
->vref_reg
[0].consumer
= devm_regulator_get_optional(dev
, "vref");
830 if (!IS_ERR(st
->vref_reg
[0].consumer
))
833 ret
= PTR_ERR(st
->vref_reg
[0].consumer
);
837 /* If no external regulator was supplied use the internal VREF */
838 st
->use_internal_vref
= true;
839 ret
= ad5064_set_config(st
, AD5064_CONFIG_INT_VREF_ENABLE
);
841 dev_err(dev
, "Failed to enable internal vref: %d\n", ret
);
846 static int ad5064_probe(struct device
*dev
, enum ad5064_type type
,
847 const char *name
, ad5064_write_func write
)
849 struct iio_dev
*indio_dev
;
850 struct ad5064_state
*st
;
851 unsigned int midscale
;
855 indio_dev
= devm_iio_device_alloc(dev
, sizeof(*st
));
856 if (indio_dev
== NULL
)
859 st
= iio_priv(indio_dev
);
860 dev_set_drvdata(dev
, indio_dev
);
862 st
->chip_info
= &ad5064_chip_info_tbl
[type
];
866 ret
= ad5064_request_vref(st
, dev
);
870 if (!st
->use_internal_vref
) {
871 ret
= regulator_bulk_enable(ad5064_num_vref(st
), st
->vref_reg
);
876 indio_dev
->dev
.parent
= dev
;
877 indio_dev
->name
= name
;
878 indio_dev
->info
= &ad5064_info
;
879 indio_dev
->modes
= INDIO_DIRECT_MODE
;
880 indio_dev
->channels
= st
->chip_info
->channels
;
881 indio_dev
->num_channels
= st
->chip_info
->num_channels
;
883 midscale
= (1 << indio_dev
->channels
[0].scan_type
.realbits
) / 2;
885 for (i
= 0; i
< st
->chip_info
->num_channels
; ++i
) {
886 st
->pwr_down_mode
[i
] = AD5064_LDAC_PWRDN_1K
;
887 st
->dac_cache
[i
] = midscale
;
890 ret
= iio_device_register(indio_dev
);
892 goto error_disable_reg
;
897 if (!st
->use_internal_vref
)
898 regulator_bulk_disable(ad5064_num_vref(st
), st
->vref_reg
);
903 static int ad5064_remove(struct device
*dev
)
905 struct iio_dev
*indio_dev
= dev_get_drvdata(dev
);
906 struct ad5064_state
*st
= iio_priv(indio_dev
);
908 iio_device_unregister(indio_dev
);
910 if (!st
->use_internal_vref
)
911 regulator_bulk_disable(ad5064_num_vref(st
), st
->vref_reg
);
916 #if IS_ENABLED(CONFIG_SPI_MASTER)
918 static int ad5064_spi_write(struct ad5064_state
*st
, unsigned int cmd
,
919 unsigned int addr
, unsigned int val
)
921 struct spi_device
*spi
= to_spi_device(st
->dev
);
923 st
->data
.spi
= cpu_to_be32(AD5064_CMD(cmd
) | AD5064_ADDR(addr
) | val
);
924 return spi_write(spi
, &st
->data
.spi
, sizeof(st
->data
.spi
));
927 static int ad5064_spi_probe(struct spi_device
*spi
)
929 const struct spi_device_id
*id
= spi_get_device_id(spi
);
931 return ad5064_probe(&spi
->dev
, id
->driver_data
, id
->name
,
935 static int ad5064_spi_remove(struct spi_device
*spi
)
937 return ad5064_remove(&spi
->dev
);
940 static const struct spi_device_id ad5064_spi_ids
[] = {
941 {"ad5024", ID_AD5024
},
942 {"ad5025", ID_AD5025
},
943 {"ad5044", ID_AD5044
},
944 {"ad5045", ID_AD5045
},
945 {"ad5064", ID_AD5064
},
946 {"ad5064-1", ID_AD5064_1
},
947 {"ad5065", ID_AD5065
},
948 {"ad5628-1", ID_AD5628_1
},
949 {"ad5628-2", ID_AD5628_2
},
950 {"ad5648-1", ID_AD5648_1
},
951 {"ad5648-2", ID_AD5648_2
},
952 {"ad5666-1", ID_AD5666_1
},
953 {"ad5666-2", ID_AD5666_2
},
954 {"ad5668-1", ID_AD5668_1
},
955 {"ad5668-2", ID_AD5668_2
},
956 {"ad5668-3", ID_AD5668_2
}, /* similar enough to ad5668-2 */
959 MODULE_DEVICE_TABLE(spi
, ad5064_spi_ids
);
961 static struct spi_driver ad5064_spi_driver
= {
965 .probe
= ad5064_spi_probe
,
966 .remove
= ad5064_spi_remove
,
967 .id_table
= ad5064_spi_ids
,
970 static int __init
ad5064_spi_register_driver(void)
972 return spi_register_driver(&ad5064_spi_driver
);
975 static void ad5064_spi_unregister_driver(void)
977 spi_unregister_driver(&ad5064_spi_driver
);
982 static inline int ad5064_spi_register_driver(void) { return 0; }
983 static inline void ad5064_spi_unregister_driver(void) { }
987 #if IS_ENABLED(CONFIG_I2C)
989 static int ad5064_i2c_write(struct ad5064_state
*st
, unsigned int cmd
,
990 unsigned int addr
, unsigned int val
)
992 struct i2c_client
*i2c
= to_i2c_client(st
->dev
);
993 unsigned int cmd_shift
;
996 switch (st
->chip_info
->regmap_type
) {
997 case AD5064_REGMAP_ADI2
:
1005 st
->data
.i2c
[0] = (cmd
<< cmd_shift
) | addr
;
1006 put_unaligned_be16(val
, &st
->data
.i2c
[1]);
1008 ret
= i2c_master_send(i2c
, st
->data
.i2c
, 3);
1015 static int ad5064_i2c_probe(struct i2c_client
*i2c
,
1016 const struct i2c_device_id
*id
)
1018 return ad5064_probe(&i2c
->dev
, id
->driver_data
, id
->name
,
1022 static int ad5064_i2c_remove(struct i2c_client
*i2c
)
1024 return ad5064_remove(&i2c
->dev
);
1027 static const struct i2c_device_id ad5064_i2c_ids
[] = {
1028 {"ad5625", ID_AD5625
},
1029 {"ad5625r-1v25", ID_AD5625R_1V25
},
1030 {"ad5625r-2v5", ID_AD5625R_2V5
},
1031 {"ad5627", ID_AD5627
},
1032 {"ad5627r-1v25", ID_AD5627R_1V25
},
1033 {"ad5627r-2v5", ID_AD5627R_2V5
},
1034 {"ad5629-1", ID_AD5629_1
},
1035 {"ad5629-2", ID_AD5629_2
},
1036 {"ad5629-3", ID_AD5629_2
}, /* similar enough to ad5629-2 */
1037 {"ad5645r-1v25", ID_AD5645R_1V25
},
1038 {"ad5645r-2v5", ID_AD5645R_2V5
},
1039 {"ad5665", ID_AD5665
},
1040 {"ad5665r-1v25", ID_AD5665R_1V25
},
1041 {"ad5665r-2v5", ID_AD5665R_2V5
},
1042 {"ad5667", ID_AD5667
},
1043 {"ad5667r-1v25", ID_AD5667R_1V25
},
1044 {"ad5667r-2v5", ID_AD5667R_2V5
},
1045 {"ad5669-1", ID_AD5669_1
},
1046 {"ad5669-2", ID_AD5669_2
},
1047 {"ad5669-3", ID_AD5669_2
}, /* similar enough to ad5669-2 */
1048 {"ltc2606", ID_LTC2606
},
1049 {"ltc2607", ID_LTC2607
},
1050 {"ltc2609", ID_LTC2609
},
1051 {"ltc2616", ID_LTC2616
},
1052 {"ltc2617", ID_LTC2617
},
1053 {"ltc2619", ID_LTC2619
},
1054 {"ltc2626", ID_LTC2626
},
1055 {"ltc2627", ID_LTC2627
},
1056 {"ltc2629", ID_LTC2629
},
1057 {"ltc2631-l12", ID_LTC2631_L12
},
1058 {"ltc2631-h12", ID_LTC2631_H12
},
1059 {"ltc2631-l10", ID_LTC2631_L10
},
1060 {"ltc2631-h10", ID_LTC2631_H10
},
1061 {"ltc2631-l8", ID_LTC2631_L8
},
1062 {"ltc2631-h8", ID_LTC2631_H8
},
1063 {"ltc2633-l12", ID_LTC2633_L12
},
1064 {"ltc2633-h12", ID_LTC2633_H12
},
1065 {"ltc2633-l10", ID_LTC2633_L10
},
1066 {"ltc2633-h10", ID_LTC2633_H10
},
1067 {"ltc2633-l8", ID_LTC2633_L8
},
1068 {"ltc2633-h8", ID_LTC2633_H8
},
1069 {"ltc2635-l12", ID_LTC2635_L12
},
1070 {"ltc2635-h12", ID_LTC2635_H12
},
1071 {"ltc2635-l10", ID_LTC2635_L10
},
1072 {"ltc2635-h10", ID_LTC2635_H10
},
1073 {"ltc2635-l8", ID_LTC2635_L8
},
1074 {"ltc2635-h8", ID_LTC2635_H8
},
1077 MODULE_DEVICE_TABLE(i2c
, ad5064_i2c_ids
);
1079 static struct i2c_driver ad5064_i2c_driver
= {
1083 .probe
= ad5064_i2c_probe
,
1084 .remove
= ad5064_i2c_remove
,
1085 .id_table
= ad5064_i2c_ids
,
1088 static int __init
ad5064_i2c_register_driver(void)
1090 return i2c_add_driver(&ad5064_i2c_driver
);
1093 static void __exit
ad5064_i2c_unregister_driver(void)
1095 i2c_del_driver(&ad5064_i2c_driver
);
1100 static inline int ad5064_i2c_register_driver(void) { return 0; }
1101 static inline void ad5064_i2c_unregister_driver(void) { }
1105 static int __init
ad5064_init(void)
1109 ret
= ad5064_spi_register_driver();
1113 ret
= ad5064_i2c_register_driver();
1115 ad5064_spi_unregister_driver();
1121 module_init(ad5064_init
);
1123 static void __exit
ad5064_exit(void)
1125 ad5064_i2c_unregister_driver();
1126 ad5064_spi_unregister_driver();
1128 module_exit(ad5064_exit
);
1130 MODULE_AUTHOR("Lars-Peter Clausen <lars@metafoo.de>");
1131 MODULE_DESCRIPTION("Analog Devices AD5024 and similar multi-channel DACs");
1132 MODULE_LICENSE("GPL v2");