2 * Copyright (C) 2013 Oskar Andero <oskar.andero@gmail.com>
3 * Copyright (C) 2014 Rose Technology
4 * Allan Bendorff Jensen <abj@rosetechnology.dk>
5 * Soren Andersen <san@rosetechnology.dk>
7 * Driver for following ADC chips from Microchip Technology's:
23 * Datasheet can be found here:
24 * http://ww1.microchip.com/downloads/en/DeviceDoc/21293C.pdf mcp3001
25 * http://ww1.microchip.com/downloads/en/DeviceDoc/21294E.pdf mcp3002
26 * http://ww1.microchip.com/downloads/en/DeviceDoc/21295d.pdf mcp3004/08
27 * http://ww1.microchip.com/downloads/en/DeviceDoc/21290D.pdf mcp3201
28 * http://ww1.microchip.com/downloads/en/DeviceDoc/21034D.pdf mcp3202
29 * http://ww1.microchip.com/downloads/en/DeviceDoc/21298c.pdf mcp3204/08
30 * http://ww1.microchip.com/downloads/en/DeviceDoc/21700E.pdf mcp3301
32 * This program is free software; you can redistribute it and/or modify
33 * it under the terms of the GNU General Public License version 2 as
34 * published by the Free Software Foundation.
37 #include <linux/err.h>
38 #include <linux/delay.h>
39 #include <linux/spi/spi.h>
40 #include <linux/module.h>
41 #include <linux/iio/iio.h>
42 #include <linux/regulator/consumer.h>
56 struct mcp320x_chip_info {
57 const struct iio_chan_spec *channels;
58 unsigned int num_channels;
59 unsigned int resolution;
63 struct spi_device *spi;
64 struct spi_message msg;
65 struct spi_transfer transfer[2];
67 struct regulator *reg;
69 const struct mcp320x_chip_info *chip_info;
71 u8 tx_buf ____cacheline_aligned;
75 static int mcp320x_channel_to_tx_data(int device_index,
76 const unsigned int channel, bool differential)
80 switch (device_index) {
87 return ((start_bit << 4) | (!differential << 3) |
93 return ((start_bit << 6) | (!differential << 5) |
100 static int mcp320x_adc_conversion(struct mcp320x *adc, u8 channel,
101 bool differential, int device_index, int *val)
107 adc->tx_buf = mcp320x_channel_to_tx_data(device_index,
108 channel, differential);
110 if (device_index != mcp3001 && device_index != mcp3201 && device_index != mcp3301) {
111 ret = spi_sync(adc->spi, &adc->msg);
115 ret = spi_read(adc->spi, &adc->rx_buf, sizeof(adc->rx_buf));
120 switch (device_index) {
122 *val = (adc->rx_buf[0] << 5 | adc->rx_buf[1] >> 3);
127 *val = (adc->rx_buf[0] << 2 | adc->rx_buf[1] >> 6);
130 *val = (adc->rx_buf[0] << 7 | adc->rx_buf[1] >> 1);
135 *val = (adc->rx_buf[0] << 4 | adc->rx_buf[1] >> 4);
138 *val = sign_extend32((adc->rx_buf[0] & 0x1f) << 8
139 | adc->rx_buf[1], 12);
146 static int mcp320x_read_raw(struct iio_dev *indio_dev,
147 struct iio_chan_spec const *channel, int *val,
148 int *val2, long mask)
150 struct mcp320x *adc = iio_priv(indio_dev);
152 int device_index = 0;
154 mutex_lock(&adc->lock);
156 device_index = spi_get_device_id(adc->spi)->driver_data;
159 case IIO_CHAN_INFO_RAW:
160 ret = mcp320x_adc_conversion(adc, channel->address,
161 channel->differential, device_index, val);
168 case IIO_CHAN_INFO_SCALE:
169 ret = regulator_get_voltage(adc->reg);
173 /* convert regulator output voltage to mV */
175 *val2 = adc->chip_info->resolution;
176 ret = IIO_VAL_FRACTIONAL_LOG2;
181 mutex_unlock(&adc->lock);
186 #define MCP320X_VOLTAGE_CHANNEL(num) \
188 .type = IIO_VOLTAGE, \
192 .info_mask_separate = BIT(IIO_CHAN_INFO_RAW), \
193 .info_mask_shared_by_type = BIT(IIO_CHAN_INFO_SCALE) \
196 #define MCP320X_VOLTAGE_CHANNEL_DIFF(chan1, chan2) \
198 .type = IIO_VOLTAGE, \
200 .channel = (chan1), \
201 .channel2 = (chan2), \
202 .address = (chan1), \
204 .info_mask_separate = BIT(IIO_CHAN_INFO_RAW), \
205 .info_mask_shared_by_type = BIT(IIO_CHAN_INFO_SCALE) \
208 static const struct iio_chan_spec mcp3201_channels[] = {
209 MCP320X_VOLTAGE_CHANNEL_DIFF(0, 1),
212 static const struct iio_chan_spec mcp3202_channels[] = {
213 MCP320X_VOLTAGE_CHANNEL(0),
214 MCP320X_VOLTAGE_CHANNEL(1),
215 MCP320X_VOLTAGE_CHANNEL_DIFF(0, 1),
216 MCP320X_VOLTAGE_CHANNEL_DIFF(1, 0),
219 static const struct iio_chan_spec mcp3204_channels[] = {
220 MCP320X_VOLTAGE_CHANNEL(0),
221 MCP320X_VOLTAGE_CHANNEL(1),
222 MCP320X_VOLTAGE_CHANNEL(2),
223 MCP320X_VOLTAGE_CHANNEL(3),
224 MCP320X_VOLTAGE_CHANNEL_DIFF(0, 1),
225 MCP320X_VOLTAGE_CHANNEL_DIFF(1, 0),
226 MCP320X_VOLTAGE_CHANNEL_DIFF(2, 3),
227 MCP320X_VOLTAGE_CHANNEL_DIFF(3, 2),
230 static const struct iio_chan_spec mcp3208_channels[] = {
231 MCP320X_VOLTAGE_CHANNEL(0),
232 MCP320X_VOLTAGE_CHANNEL(1),
233 MCP320X_VOLTAGE_CHANNEL(2),
234 MCP320X_VOLTAGE_CHANNEL(3),
235 MCP320X_VOLTAGE_CHANNEL(4),
236 MCP320X_VOLTAGE_CHANNEL(5),
237 MCP320X_VOLTAGE_CHANNEL(6),
238 MCP320X_VOLTAGE_CHANNEL(7),
239 MCP320X_VOLTAGE_CHANNEL_DIFF(0, 1),
240 MCP320X_VOLTAGE_CHANNEL_DIFF(1, 0),
241 MCP320X_VOLTAGE_CHANNEL_DIFF(2, 3),
242 MCP320X_VOLTAGE_CHANNEL_DIFF(3, 2),
243 MCP320X_VOLTAGE_CHANNEL_DIFF(4, 5),
244 MCP320X_VOLTAGE_CHANNEL_DIFF(5, 4),
245 MCP320X_VOLTAGE_CHANNEL_DIFF(6, 7),
246 MCP320X_VOLTAGE_CHANNEL_DIFF(7, 6),
249 static const struct iio_info mcp320x_info = {
250 .read_raw = mcp320x_read_raw,
251 .driver_module = THIS_MODULE,
254 static const struct mcp320x_chip_info mcp320x_chip_infos[] = {
256 .channels = mcp3201_channels,
257 .num_channels = ARRAY_SIZE(mcp3201_channels),
261 .channels = mcp3202_channels,
262 .num_channels = ARRAY_SIZE(mcp3202_channels),
266 .channels = mcp3204_channels,
267 .num_channels = ARRAY_SIZE(mcp3204_channels),
271 .channels = mcp3208_channels,
272 .num_channels = ARRAY_SIZE(mcp3208_channels),
276 .channels = mcp3201_channels,
277 .num_channels = ARRAY_SIZE(mcp3201_channels),
281 .channels = mcp3202_channels,
282 .num_channels = ARRAY_SIZE(mcp3202_channels),
286 .channels = mcp3204_channels,
287 .num_channels = ARRAY_SIZE(mcp3204_channels),
291 .channels = mcp3208_channels,
292 .num_channels = ARRAY_SIZE(mcp3208_channels),
296 .channels = mcp3201_channels,
297 .num_channels = ARRAY_SIZE(mcp3201_channels),
302 static int mcp320x_probe(struct spi_device *spi)
304 struct iio_dev *indio_dev;
306 const struct mcp320x_chip_info *chip_info;
309 indio_dev = devm_iio_device_alloc(&spi->dev, sizeof(*adc));
313 adc = iio_priv(indio_dev);
316 indio_dev->dev.parent = &spi->dev;
317 indio_dev->dev.of_node = spi->dev.of_node;
318 indio_dev->name = spi_get_device_id(spi)->name;
319 indio_dev->modes = INDIO_DIRECT_MODE;
320 indio_dev->info = &mcp320x_info;
321 spi_set_drvdata(spi, indio_dev);
323 chip_info = &mcp320x_chip_infos[spi_get_device_id(spi)->driver_data];
324 indio_dev->channels = chip_info->channels;
325 indio_dev->num_channels = chip_info->num_channels;
327 adc->chip_info = chip_info;
329 adc->transfer[0].tx_buf = &adc->tx_buf;
330 adc->transfer[0].len = sizeof(adc->tx_buf);
331 adc->transfer[1].rx_buf = adc->rx_buf;
332 adc->transfer[1].len = sizeof(adc->rx_buf);
334 spi_message_init_with_transfers(&adc->msg, adc->transfer,
335 ARRAY_SIZE(adc->transfer));
337 adc->reg = devm_regulator_get(&spi->dev, "vref");
338 if (IS_ERR(adc->reg))
339 return PTR_ERR(adc->reg);
341 ret = regulator_enable(adc->reg);
345 mutex_init(&adc->lock);
347 ret = iio_device_register(indio_dev);
354 regulator_disable(adc->reg);
359 static int mcp320x_remove(struct spi_device *spi)
361 struct iio_dev *indio_dev = spi_get_drvdata(spi);
362 struct mcp320x *adc = iio_priv(indio_dev);
364 iio_device_unregister(indio_dev);
365 regulator_disable(adc->reg);
370 #if defined(CONFIG_OF)
371 static const struct of_device_id mcp320x_dt_ids[] = {
372 /* NOTE: The use of compatibles with no vendor prefix is deprecated. */
374 .compatible = "mcp3001",
375 .data = &mcp320x_chip_infos[mcp3001],
377 .compatible = "mcp3002",
378 .data = &mcp320x_chip_infos[mcp3002],
380 .compatible = "mcp3004",
381 .data = &mcp320x_chip_infos[mcp3004],
383 .compatible = "mcp3008",
384 .data = &mcp320x_chip_infos[mcp3008],
386 .compatible = "mcp3201",
387 .data = &mcp320x_chip_infos[mcp3201],
389 .compatible = "mcp3202",
390 .data = &mcp320x_chip_infos[mcp3202],
392 .compatible = "mcp3204",
393 .data = &mcp320x_chip_infos[mcp3204],
395 .compatible = "mcp3208",
396 .data = &mcp320x_chip_infos[mcp3208],
398 .compatible = "mcp3301",
399 .data = &mcp320x_chip_infos[mcp3301],
401 .compatible = "microchip,mcp3001",
402 .data = &mcp320x_chip_infos[mcp3001],
404 .compatible = "microchip,mcp3002",
405 .data = &mcp320x_chip_infos[mcp3002],
407 .compatible = "microchip,mcp3004",
408 .data = &mcp320x_chip_infos[mcp3004],
410 .compatible = "microchip,mcp3008",
411 .data = &mcp320x_chip_infos[mcp3008],
413 .compatible = "microchip,mcp3201",
414 .data = &mcp320x_chip_infos[mcp3201],
416 .compatible = "microchip,mcp3202",
417 .data = &mcp320x_chip_infos[mcp3202],
419 .compatible = "microchip,mcp3204",
420 .data = &mcp320x_chip_infos[mcp3204],
422 .compatible = "microchip,mcp3208",
423 .data = &mcp320x_chip_infos[mcp3208],
425 .compatible = "microchip,mcp3301",
426 .data = &mcp320x_chip_infos[mcp3301],
430 MODULE_DEVICE_TABLE(of, mcp320x_dt_ids);
433 static const struct spi_device_id mcp320x_id[] = {
434 { "mcp3001", mcp3001 },
435 { "mcp3002", mcp3002 },
436 { "mcp3004", mcp3004 },
437 { "mcp3008", mcp3008 },
438 { "mcp3201", mcp3201 },
439 { "mcp3202", mcp3202 },
440 { "mcp3204", mcp3204 },
441 { "mcp3208", mcp3208 },
442 { "mcp3301", mcp3301 },
445 MODULE_DEVICE_TABLE(spi, mcp320x_id);
447 static struct spi_driver mcp320x_driver = {
450 .of_match_table = of_match_ptr(mcp320x_dt_ids),
452 .probe = mcp320x_probe,
453 .remove = mcp320x_remove,
454 .id_table = mcp320x_id,
456 module_spi_driver(mcp320x_driver);
458 MODULE_AUTHOR("Oskar Andero <oskar.andero@gmail.com>");
459 MODULE_DESCRIPTION("Microchip Technology MCP3x01/02/04/08");
460 MODULE_LICENSE("GPL v2");