2 * AD5504, AD5501 High Voltage Digital to Analog Converter
4 * Copyright 2011 Analog Devices Inc.
6 * Licensed under the GPL-2.
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>
19 #include <linux/iio/iio.h>
20 #include <linux/iio/sysfs.h>
21 #include <linux/iio/events.h>
22 #include <linux/iio/dac/ad5504.h>
24 #define AD5505_BITS 12
25 #define AD5504_RES_MASK ((1 << (AD5505_BITS)) - 1)
27 #define AD5504_CMD_READ (1 << 15)
28 #define AD5504_CMD_WRITE (0 << 15)
29 #define AD5504_ADDR(addr) ((addr) << 12)
32 #define AD5504_ADDR_NOOP 0
33 #define AD5504_ADDR_DAC(x) ((x) + 1)
34 #define AD5504_ADDR_ALL_DAC 5
35 #define AD5504_ADDR_CTRL 7
37 /* Control Register */
38 #define AD5504_DAC_PWR(ch) ((ch) << 2)
39 #define AD5504_DAC_PWRDWN_MODE(mode) ((mode) << 6)
40 #define AD5504_DAC_PWRDN_20K 0
41 #define AD5504_DAC_PWRDN_3STATE 1
44 * struct ad5446_state - driver instance specific data
46 * @reg: supply regulator
47 * @vref_mv: actual reference voltage used
48 * @pwr_down_mask power down mask
49 * @pwr_down_mode current power down mode
53 struct spi_device *spi;
54 struct regulator *reg;
55 unsigned short vref_mv;
56 unsigned pwr_down_mask;
57 unsigned pwr_down_mode;
61 * ad5504_supported_device_ids:
64 enum ad5504_supported_device_ids {
69 static int ad5504_spi_write(struct spi_device *spi, u8 addr, u16 val)
71 u16 tmp = cpu_to_be16(AD5504_CMD_WRITE |
73 (val & AD5504_RES_MASK));
75 return spi_write(spi, (u8 *)&tmp, 2);
78 static int ad5504_spi_read(struct spi_device *spi, u8 addr)
80 u16 tmp = cpu_to_be16(AD5504_CMD_READ | AD5504_ADDR(addr));
83 struct spi_transfer t = {
88 ret = spi_sync_transfer(spi, &t, 1);
93 return be16_to_cpu(val) & AD5504_RES_MASK;
96 static int ad5504_read_raw(struct iio_dev *indio_dev,
97 struct iio_chan_spec const *chan,
102 struct ad5504_state *st = iio_priv(indio_dev);
103 unsigned long scale_uv;
107 case IIO_CHAN_INFO_RAW:
108 ret = ad5504_spi_read(st->spi, chan->address);
115 case IIO_CHAN_INFO_SCALE:
116 scale_uv = (st->vref_mv * 1000) >> chan->scan_type.realbits;
117 *val = scale_uv / 1000;
118 *val2 = (scale_uv % 1000) * 1000;
119 return IIO_VAL_INT_PLUS_MICRO;
125 static int ad5504_write_raw(struct iio_dev *indio_dev,
126 struct iio_chan_spec const *chan,
131 struct ad5504_state *st = iio_priv(indio_dev);
135 case IIO_CHAN_INFO_RAW:
136 if (val >= (1 << chan->scan_type.realbits) || val < 0)
139 return ad5504_spi_write(st->spi, chan->address, val);
147 static const char * const ad5504_powerdown_modes[] = {
152 static int ad5504_get_powerdown_mode(struct iio_dev *indio_dev,
153 const struct iio_chan_spec *chan)
155 struct ad5504_state *st = iio_priv(indio_dev);
157 return st->pwr_down_mode;
160 static int ad5504_set_powerdown_mode(struct iio_dev *indio_dev,
161 const struct iio_chan_spec *chan, unsigned int mode)
163 struct ad5504_state *st = iio_priv(indio_dev);
165 st->pwr_down_mode = mode;
170 static const struct iio_enum ad5504_powerdown_mode_enum = {
171 .items = ad5504_powerdown_modes,
172 .num_items = ARRAY_SIZE(ad5504_powerdown_modes),
173 .get = ad5504_get_powerdown_mode,
174 .set = ad5504_set_powerdown_mode,
177 static ssize_t ad5504_read_dac_powerdown(struct iio_dev *indio_dev,
178 uintptr_t private, const struct iio_chan_spec *chan, char *buf)
180 struct ad5504_state *st = iio_priv(indio_dev);
182 return sprintf(buf, "%d\n",
183 !(st->pwr_down_mask & (1 << chan->channel)));
186 static ssize_t ad5504_write_dac_powerdown(struct iio_dev *indio_dev,
187 uintptr_t private, const struct iio_chan_spec *chan, const char *buf,
192 struct ad5504_state *st = iio_priv(indio_dev);
194 ret = strtobool(buf, &pwr_down);
199 st->pwr_down_mask |= (1 << chan->channel);
201 st->pwr_down_mask &= ~(1 << chan->channel);
203 ret = ad5504_spi_write(st->spi, AD5504_ADDR_CTRL,
204 AD5504_DAC_PWRDWN_MODE(st->pwr_down_mode) |
205 AD5504_DAC_PWR(st->pwr_down_mask));
207 /* writes to the CTRL register must be followed by a NOOP */
208 ad5504_spi_write(st->spi, AD5504_ADDR_NOOP, 0);
210 return ret ? ret : len;
213 static IIO_CONST_ATTR(temp0_thresh_rising_value, "110000");
214 static IIO_CONST_ATTR(temp0_thresh_rising_en, "1");
216 static struct attribute *ad5504_ev_attributes[] = {
217 &iio_const_attr_temp0_thresh_rising_value.dev_attr.attr,
218 &iio_const_attr_temp0_thresh_rising_en.dev_attr.attr,
222 static struct attribute_group ad5504_ev_attribute_group = {
223 .attrs = ad5504_ev_attributes,
227 static irqreturn_t ad5504_event_handler(int irq, void *private)
229 iio_push_event(private,
230 IIO_UNMOD_EVENT_CODE(IIO_TEMP,
239 static const struct iio_info ad5504_info = {
240 .write_raw = ad5504_write_raw,
241 .read_raw = ad5504_read_raw,
242 .event_attrs = &ad5504_ev_attribute_group,
243 .driver_module = THIS_MODULE,
246 static const struct iio_chan_spec_ext_info ad5504_ext_info[] = {
249 .read = ad5504_read_dac_powerdown,
250 .write = ad5504_write_dac_powerdown,
252 IIO_ENUM("powerdown_mode", true, &ad5504_powerdown_mode_enum),
253 IIO_ENUM_AVAILABLE("powerdown_mode", &ad5504_powerdown_mode_enum),
257 #define AD5504_CHANNEL(_chan) { \
258 .type = IIO_VOLTAGE, \
261 .channel = (_chan), \
262 .info_mask_separate = BIT(IIO_CHAN_INFO_RAW), \
263 .info_mask_shared_by_type = BIT(IIO_CHAN_INFO_SCALE), \
264 .address = AD5504_ADDR_DAC(_chan), \
265 .scan_type = IIO_ST('u', 12, 16, 0), \
266 .ext_info = ad5504_ext_info, \
269 static const struct iio_chan_spec ad5504_channels[] = {
276 static int ad5504_probe(struct spi_device *spi)
278 struct ad5504_platform_data *pdata = spi->dev.platform_data;
279 struct iio_dev *indio_dev;
280 struct ad5504_state *st;
281 struct regulator *reg;
282 int ret, voltage_uv = 0;
284 indio_dev = devm_iio_device_alloc(&spi->dev, sizeof(*st));
287 reg = devm_regulator_get(&spi->dev, "vcc");
289 ret = regulator_enable(reg);
293 ret = regulator_get_voltage(reg);
295 goto error_disable_reg;
300 spi_set_drvdata(spi, indio_dev);
301 st = iio_priv(indio_dev);
303 st->vref_mv = voltage_uv / 1000;
305 st->vref_mv = pdata->vref_mv;
307 dev_warn(&spi->dev, "reference voltage unspecified\n");
311 indio_dev->dev.parent = &spi->dev;
312 indio_dev->name = spi_get_device_id(st->spi)->name;
313 indio_dev->info = &ad5504_info;
314 if (spi_get_device_id(st->spi)->driver_data == ID_AD5501)
315 indio_dev->num_channels = 1;
317 indio_dev->num_channels = 4;
318 indio_dev->channels = ad5504_channels;
319 indio_dev->modes = INDIO_DIRECT_MODE;
322 ret = devm_request_threaded_irq(&spi->dev, spi->irq,
324 &ad5504_event_handler,
325 IRQF_TRIGGER_FALLING | IRQF_ONESHOT,
326 spi_get_device_id(st->spi)->name,
329 goto error_disable_reg;
332 ret = iio_device_register(indio_dev);
334 goto error_disable_reg;
340 regulator_disable(reg);
345 static int ad5504_remove(struct spi_device *spi)
347 struct iio_dev *indio_dev = spi_get_drvdata(spi);
348 struct ad5504_state *st = iio_priv(indio_dev);
350 iio_device_unregister(indio_dev);
352 if (!IS_ERR(st->reg))
353 regulator_disable(st->reg);
358 static const struct spi_device_id ad5504_id[] = {
359 {"ad5504", ID_AD5504},
360 {"ad5501", ID_AD5501},
363 MODULE_DEVICE_TABLE(spi, ad5504_id);
365 static struct spi_driver ad5504_driver = {
368 .owner = THIS_MODULE,
370 .probe = ad5504_probe,
371 .remove = ad5504_remove,
372 .id_table = ad5504_id,
374 module_spi_driver(ad5504_driver);
377 MODULE_DESCRIPTION("Analog Devices AD5501/AD5501 DAC");
378 MODULE_LICENSE("GPL v2");