blob: 9a82a7255ebb8d4420e22444f02a4e82a28bd0bb [file] [log] [blame]
Roland Stigge6ddc5fb2011-01-12 11:41:59 +01001/*
2 * max517.c - Support for Maxim MAX517, MAX518 and MAX519
3 *
4 * Copyright (C) 2010, 2011 Roland Stigge <stigge@antcom.de>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 */
20
21#include <linux/module.h>
Roland Stigge6ddc5fb2011-01-12 11:41:59 +010022#include <linux/slab.h>
23#include <linux/jiffies.h>
24#include <linux/i2c.h>
25#include <linux/err.h>
26
Jonathan Cameron06458e22012-04-25 15:54:58 +010027#include <linux/iio/iio.h>
28#include <linux/iio/sysfs.h>
Lars-Peter Clausendbdc0252012-06-04 11:36:28 +020029#include <linux/iio/dac/max517.h>
Roland Stigge6ddc5fb2011-01-12 11:41:59 +010030
31#define MAX517_DRV_NAME "max517"
32
33/* Commands */
34#define COMMAND_CHANNEL0 0x00
35#define COMMAND_CHANNEL1 0x01 /* for MAX518 and MAX519 */
36#define COMMAND_PD 0x08 /* Power Down */
37
38enum max517_device_ids {
39 ID_MAX517,
40 ID_MAX518,
41 ID_MAX519,
42};
43
44struct max517_data {
Roland Stigge826514b2011-01-29 16:36:46 +010045 struct i2c_client *client;
Roland Stigge6ddc5fb2011-01-12 11:41:59 +010046 unsigned short vref_mv[2];
47};
48
49/*
50 * channel: bit 0: channel 1
51 * bit 1: channel 2
52 * (this way, it's possible to set both channels at once)
53 */
Lars-Peter Clausen4cd8d872012-06-04 11:36:20 +020054static int max517_set_value(struct iio_dev *indio_dev,
55 long val, int channel)
Roland Stigge6ddc5fb2011-01-12 11:41:59 +010056{
Jonathan Cameron638e59f2011-10-06 17:14:38 +010057 struct max517_data *data = iio_priv(indio_dev);
Roland Stigge826514b2011-01-29 16:36:46 +010058 struct i2c_client *client = data->client;
Lars-Peter Clausen4cd8d872012-06-04 11:36:20 +020059 u8 outbuf[2];
Roland Stigge6ddc5fb2011-01-12 11:41:59 +010060 int res;
Roland Stigge6ddc5fb2011-01-12 11:41:59 +010061
62 if (val < 0 || val > 255)
63 return -EINVAL;
64
Lars-Peter Clausen4cd8d872012-06-04 11:36:20 +020065 outbuf[0] = channel;
66 outbuf[1] = val;
Roland Stigge6ddc5fb2011-01-12 11:41:59 +010067
Lars-Peter Clausen4cd8d872012-06-04 11:36:20 +020068 res = i2c_master_send(client, outbuf, 2);
Roland Stigge6ddc5fb2011-01-12 11:41:59 +010069 if (res < 0)
70 return res;
Lars-Peter Clausen4cd8d872012-06-04 11:36:20 +020071 else if (res != 2)
72 return -EIO;
73 else
74 return 0;
Roland Stigge6ddc5fb2011-01-12 11:41:59 +010075}
76
Lars-Peter Clausen4cd8d872012-06-04 11:36:20 +020077static int max517_read_raw(struct iio_dev *indio_dev,
78 struct iio_chan_spec const *chan,
79 int *val,
80 int *val2,
81 long m)
Roland Stigge6ddc5fb2011-01-12 11:41:59 +010082{
Jonathan Cameron638e59f2011-10-06 17:14:38 +010083 struct max517_data *data = iio_priv(indio_dev);
Roland Stigge6ddc5fb2011-01-12 11:41:59 +010084
Lars-Peter Clausen4cd8d872012-06-04 11:36:20 +020085 switch (m) {
86 case IIO_CHAN_INFO_SCALE:
87 /* Corresponds to Vref / 2^(bits) */
Lars-Peter Clausen998f1292013-09-28 10:31:00 +010088 *val = data->vref_mv[chan->channel];
89 *val2 = 8;
90 return IIO_VAL_FRACTIONAL_LOG2;
Lars-Peter Clausen4cd8d872012-06-04 11:36:20 +020091 default:
92 break;
93 }
94 return -EINVAL;
Roland Stigge6ddc5fb2011-01-12 11:41:59 +010095}
96
Lars-Peter Clausen4cd8d872012-06-04 11:36:20 +020097static int max517_write_raw(struct iio_dev *indio_dev,
98 struct iio_chan_spec const *chan, int val, int val2, long mask)
Roland Stigge6ddc5fb2011-01-12 11:41:59 +010099{
Lars-Peter Clausen4cd8d872012-06-04 11:36:20 +0200100 int ret;
101
102 switch (mask) {
103 case IIO_CHAN_INFO_RAW:
104 ret = max517_set_value(indio_dev, val, chan->channel);
105 break;
106 default:
107 ret = -EINVAL;
108 break;
109 }
110
111 return ret;
Roland Stigge6ddc5fb2011-01-12 11:41:59 +0100112}
Roland Stigge6ddc5fb2011-01-12 11:41:59 +0100113
Lars-Peter Clausen01788c52012-02-20 19:37:05 +0100114#ifdef CONFIG_PM_SLEEP
115static int max517_suspend(struct device *dev)
Roland Stigge6ddc5fb2011-01-12 11:41:59 +0100116{
117 u8 outbuf = COMMAND_PD;
118
Lars-Peter Clausen01788c52012-02-20 19:37:05 +0100119 return i2c_master_send(to_i2c_client(dev), &outbuf, 1);
Roland Stigge6ddc5fb2011-01-12 11:41:59 +0100120}
121
Lars-Peter Clausen01788c52012-02-20 19:37:05 +0100122static int max517_resume(struct device *dev)
Roland Stigge6ddc5fb2011-01-12 11:41:59 +0100123{
124 u8 outbuf = 0;
125
Lars-Peter Clausen01788c52012-02-20 19:37:05 +0100126 return i2c_master_send(to_i2c_client(dev), &outbuf, 1);
Roland Stigge6ddc5fb2011-01-12 11:41:59 +0100127}
128
Lars-Peter Clausen01788c52012-02-20 19:37:05 +0100129static SIMPLE_DEV_PM_OPS(max517_pm_ops, max517_suspend, max517_resume);
130#define MAX517_PM_OPS (&max517_pm_ops)
131#else
132#define MAX517_PM_OPS NULL
133#endif
134
Jonathan Cameron6fe81352011-05-18 14:42:37 +0100135static const struct iio_info max517_info = {
Lars-Peter Clausen4cd8d872012-06-04 11:36:20 +0200136 .read_raw = max517_read_raw,
137 .write_raw = max517_write_raw,
Jonathan Cameron6fe81352011-05-18 14:42:37 +0100138 .driver_module = THIS_MODULE,
139};
140
Lars-Peter Clausen4cd8d872012-06-04 11:36:20 +0200141#define MAX517_CHANNEL(chan) { \
142 .type = IIO_VOLTAGE, \
143 .indexed = 1, \
144 .output = 1, \
145 .channel = (chan), \
Jonathan Cameron040b8372013-02-27 19:28:22 +0000146 .info_mask_separate = BIT(IIO_CHAN_INFO_RAW) | \
147 BIT(IIO_CHAN_INFO_SCALE), \
Lars-Peter Clausen4cd8d872012-06-04 11:36:20 +0200148}
149
150static const struct iio_chan_spec max517_channels[] = {
151 MAX517_CHANNEL(0),
152 MAX517_CHANNEL(1)
Jonathan Cameron6fe81352011-05-18 14:42:37 +0100153};
154
Greg Kroah-Hartmanfc526922012-12-21 13:21:43 -0800155static int max517_probe(struct i2c_client *client,
Roland Stigge6ddc5fb2011-01-12 11:41:59 +0100156 const struct i2c_device_id *id)
157{
158 struct max517_data *data;
Jonathan Cameroncada11f2011-06-27 13:07:35 +0100159 struct iio_dev *indio_dev;
Roland Stigge6ddc5fb2011-01-12 11:41:59 +0100160 struct max517_platform_data *platform_data = client->dev.platform_data;
Roland Stigge6ddc5fb2011-01-12 11:41:59 +0100161
Sachin Kamatcc566fd2013-08-19 12:38:00 +0100162 indio_dev = devm_iio_device_alloc(&client->dev, sizeof(*data));
163 if (!indio_dev)
164 return -ENOMEM;
Jonathan Cameroncada11f2011-06-27 13:07:35 +0100165 data = iio_priv(indio_dev);
166 i2c_set_clientdata(client, indio_dev);
Roland Stigge826514b2011-01-29 16:36:46 +0100167 data->client = client;
168
Roland Stigge6ddc5fb2011-01-12 11:41:59 +0100169 /* establish that the iio_dev is a child of the i2c device */
Jonathan Cameroncada11f2011-06-27 13:07:35 +0100170 indio_dev->dev.parent = &client->dev;
Roland Stigge6ddc5fb2011-01-12 11:41:59 +0100171
Lars-Peter Clausen4cd8d872012-06-04 11:36:20 +0200172 /* reduced channel set for MAX517 */
Roland Stigge6ddc5fb2011-01-12 11:41:59 +0100173 if (id->driver_data == ID_MAX517)
Lars-Peter Clausen4cd8d872012-06-04 11:36:20 +0200174 indio_dev->num_channels = 1;
Roland Stigge6ddc5fb2011-01-12 11:41:59 +0100175 else
Lars-Peter Clausen4cd8d872012-06-04 11:36:20 +0200176 indio_dev->num_channels = 2;
177 indio_dev->channels = max517_channels;
Jonathan Cameroncada11f2011-06-27 13:07:35 +0100178 indio_dev->modes = INDIO_DIRECT_MODE;
Lars-Peter Clausen4cd8d872012-06-04 11:36:20 +0200179 indio_dev->info = &max517_info;
Roland Stigge6ddc5fb2011-01-12 11:41:59 +0100180
181 /*
182 * Reference voltage on MAX518 and default is 5V, else take vref_mv
183 * from platform_data
184 */
185 if (id->driver_data == ID_MAX518 || !platform_data) {
186 data->vref_mv[0] = data->vref_mv[1] = 5000; /* mV */
187 } else {
188 data->vref_mv[0] = platform_data->vref_mv[0];
189 data->vref_mv[1] = platform_data->vref_mv[1];
190 }
191
Sachin Kamat345d4f922013-10-24 12:53:00 +0100192 return iio_device_register(indio_dev);
Roland Stigge6ddc5fb2011-01-12 11:41:59 +0100193}
194
Greg Kroah-Hartmanfc526922012-12-21 13:21:43 -0800195static int max517_remove(struct i2c_client *client)
Roland Stigge6ddc5fb2011-01-12 11:41:59 +0100196{
Peter Meerwalde8ccc112012-05-02 01:13:33 +0200197 iio_device_unregister(i2c_get_clientdata(client));
Roland Stigge6ddc5fb2011-01-12 11:41:59 +0100198 return 0;
199}
200
201static const struct i2c_device_id max517_id[] = {
202 { "max517", ID_MAX517 },
203 { "max518", ID_MAX518 },
204 { "max519", ID_MAX519 },
205 { }
206};
207MODULE_DEVICE_TABLE(i2c, max517_id);
208
209static struct i2c_driver max517_driver = {
210 .driver = {
211 .name = MAX517_DRV_NAME,
Lars-Peter Clausen01788c52012-02-20 19:37:05 +0100212 .pm = MAX517_PM_OPS,
Roland Stigge6ddc5fb2011-01-12 11:41:59 +0100213 },
214 .probe = max517_probe,
Greg Kroah-Hartmanfc526922012-12-21 13:21:43 -0800215 .remove = max517_remove,
Roland Stigge6ddc5fb2011-01-12 11:41:59 +0100216 .id_table = max517_id,
217};
Lars-Peter Clausen6e5af182011-11-16 10:13:38 +0100218module_i2c_driver(max517_driver);
Roland Stigge6ddc5fb2011-01-12 11:41:59 +0100219
220MODULE_AUTHOR("Roland Stigge <stigge@antcom.de>");
221MODULE_DESCRIPTION("MAX517/MAX518/MAX519 8-bit DAC");
222MODULE_LICENSE("GPL");