1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * max517.c - Support for Maxim MAX517, MAX518 and MAX519
8 #include <linux/module.h>
9 #include <linux/slab.h>
10 #include <linux/jiffies.h>
11 #include <linux/i2c.h>
12 #include <linux/err.h>
14 #include <linux/iio/iio.h>
15 #include <linux/iio/sysfs.h>
16 #include <linux/iio/dac/max517.h>
18 #define MAX517_DRV_NAME "max517"
21 #define COMMAND_CHANNEL0 0x00
22 #define COMMAND_CHANNEL1 0x01 /* for MAX518 and MAX519 */
23 #define COMMAND_PD 0x08 /* Power Down */
25 enum max517_device_ids {
34 struct i2c_client *client;
35 unsigned short vref_mv[8];
39 * channel: bit 0: channel 1
41 * (this way, it's possible to set both channels at once)
43 static int max517_set_value(struct iio_dev *indio_dev,
44 long val, int channel)
46 struct max517_data *data = iio_priv(indio_dev);
47 struct i2c_client *client = data->client;
51 if (val < 0 || val > 255)
57 res = i2c_master_send(client, outbuf, 2);
66 static int max517_read_raw(struct iio_dev *indio_dev,
67 struct iio_chan_spec const *chan,
72 struct max517_data *data = iio_priv(indio_dev);
75 case IIO_CHAN_INFO_SCALE:
76 /* Corresponds to Vref / 2^(bits) */
77 *val = data->vref_mv[chan->channel];
79 return IIO_VAL_FRACTIONAL_LOG2;
86 static int max517_write_raw(struct iio_dev *indio_dev,
87 struct iio_chan_spec const *chan, int val, int val2, long mask)
92 case IIO_CHAN_INFO_RAW:
93 ret = max517_set_value(indio_dev, val, chan->channel);
103 static int __maybe_unused max517_suspend(struct device *dev)
105 u8 outbuf = COMMAND_PD;
107 return i2c_master_send(to_i2c_client(dev), &outbuf, 1);
110 static int __maybe_unused max517_resume(struct device *dev)
114 return i2c_master_send(to_i2c_client(dev), &outbuf, 1);
117 static SIMPLE_DEV_PM_OPS(max517_pm_ops, max517_suspend, max517_resume);
119 static const struct iio_info max517_info = {
120 .read_raw = max517_read_raw,
121 .write_raw = max517_write_raw,
124 #define MAX517_CHANNEL(chan) { \
125 .type = IIO_VOLTAGE, \
129 .info_mask_separate = BIT(IIO_CHAN_INFO_RAW) | \
130 BIT(IIO_CHAN_INFO_SCALE), \
133 static const struct iio_chan_spec max517_channels[] = {
144 static int max517_probe(struct i2c_client *client,
145 const struct i2c_device_id *id)
147 struct max517_data *data;
148 struct iio_dev *indio_dev;
149 struct max517_platform_data *platform_data = client->dev.platform_data;
152 indio_dev = devm_iio_device_alloc(&client->dev, sizeof(*data));
155 data = iio_priv(indio_dev);
156 data->client = client;
158 switch (id->driver_data) {
160 indio_dev->num_channels = 8;
163 indio_dev->num_channels = 4;
167 indio_dev->num_channels = 2;
169 default: /* single channel for MAX517 */
170 indio_dev->num_channels = 1;
173 indio_dev->channels = max517_channels;
174 indio_dev->modes = INDIO_DIRECT_MODE;
175 indio_dev->info = &max517_info;
178 * Reference voltage on MAX518 and default is 5V, else take vref_mv
181 for (chan = 0; chan < indio_dev->num_channels; chan++) {
182 if (id->driver_data == ID_MAX518 || !platform_data)
183 data->vref_mv[chan] = 5000; /* mV */
185 data->vref_mv[chan] = platform_data->vref_mv[chan];
188 return devm_iio_device_register(&client->dev, indio_dev);
191 static const struct i2c_device_id max517_id[] = {
192 { "max517", ID_MAX517 },
193 { "max518", ID_MAX518 },
194 { "max519", ID_MAX519 },
195 { "max520", ID_MAX520 },
196 { "max521", ID_MAX521 },
199 MODULE_DEVICE_TABLE(i2c, max517_id);
201 static struct i2c_driver max517_driver = {
203 .name = MAX517_DRV_NAME,
204 .pm = &max517_pm_ops,
206 .probe = max517_probe,
207 .id_table = max517_id,
209 module_i2c_driver(max517_driver);
212 MODULE_DESCRIPTION("MAX517/518/519/520/521 8-bit DAC");
213 MODULE_LICENSE("GPL");