blob: 5331c442fcfca0e1612ac54684094b803ba63380 [file] [log] [blame]
Roland Stigge906ecf62012-02-14 19:44:56 +01001/*
2 * lpc32xx_adc.c - Support for ADC in LPC32XX
3 *
4 * 3-channel, 10-bit ADC
5 *
6 * Copyright (C) 2011, 2012 Roland Stigge <stigge@antcom.de>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 */
22
23#include <linux/module.h>
24#include <linux/platform_device.h>
25#include <linux/interrupt.h>
26#include <linux/device.h>
27#include <linux/kernel.h>
28#include <linux/slab.h>
29#include <linux/io.h>
30#include <linux/clk.h>
31#include <linux/err.h>
32#include <linux/completion.h>
Roland Stigge1f9e3492012-04-21 10:10:16 +020033#include <linux/of.h>
Roland Stigge906ecf62012-02-14 19:44:56 +010034
Jonathan Cameron06458e22012-04-25 15:54:58 +010035#include <linux/iio/iio.h>
36#include <linux/iio/sysfs.h>
Roland Stigge906ecf62012-02-14 19:44:56 +010037
38/*
39 * LPC32XX registers definitions
40 */
41#define LPC32XX_ADC_SELECT(x) ((x) + 0x04)
42#define LPC32XX_ADC_CTRL(x) ((x) + 0x08)
43#define LPC32XX_ADC_VALUE(x) ((x) + 0x48)
44
45/* Bit definitions for LPC32XX_ADC_SELECT: */
46#define AD_REFm 0x00000200 /* constant, always write this value! */
47#define AD_REFp 0x00000080 /* constant, always write this value! */
48#define AD_IN 0x00000010 /* multiple of this is the */
49 /* channel number: 0, 1, 2 */
50#define AD_INTERNAL 0x00000004 /* constant, always write this value! */
51
52/* Bit definitions for LPC32XX_ADC_CTRL: */
53#define AD_STROBE 0x00000002
54#define AD_PDN_CTRL 0x00000004
55
56/* Bit definitions for LPC32XX_ADC_VALUE: */
57#define ADC_VALUE_MASK 0x000003FF
58
59#define MOD_NAME "lpc32xx-adc"
60
61struct lpc32xx_adc_info {
62 void __iomem *adc_base;
63 struct clk *clk;
64 struct completion completion;
65
66 u32 value;
67};
68
69static int lpc32xx_read_raw(struct iio_dev *indio_dev,
70 struct iio_chan_spec const *chan,
71 int *val,
72 int *val2,
73 long mask)
74{
75 struct lpc32xx_adc_info *info = iio_priv(indio_dev);
76
Jonathan Cameronb11f98f2012-04-15 17:41:18 +010077 if (mask == IIO_CHAN_INFO_RAW) {
Roland Stigge906ecf62012-02-14 19:44:56 +010078 mutex_lock(&indio_dev->mlock);
79 clk_enable(info->clk);
80 /* Measurement setup */
81 __raw_writel(AD_INTERNAL | (chan->address) | AD_REFp | AD_REFm,
82 LPC32XX_ADC_SELECT(info->adc_base));
83 /* Trigger conversion */
84 __raw_writel(AD_PDN_CTRL | AD_STROBE,
85 LPC32XX_ADC_CTRL(info->adc_base));
86 wait_for_completion(&info->completion); /* set by ISR */
87 clk_disable(info->clk);
88 *val = info->value;
89 mutex_unlock(&indio_dev->mlock);
90
91 return IIO_VAL_INT;
92 }
93
94 return -EINVAL;
95}
96
97static const struct iio_info lpc32xx_adc_iio_info = {
98 .read_raw = &lpc32xx_read_raw,
99 .driver_module = THIS_MODULE,
100};
101
Jonathan Cameronb11f98f2012-04-15 17:41:18 +0100102#define LPC32XX_ADC_CHANNEL(_index) { \
103 .type = IIO_VOLTAGE, \
104 .indexed = 1, \
105 .channel = _index, \
Jonathan Cameron066f9052013-03-04 21:10:17 +0000106 .info_mask_separate = BIT(IIO_CHAN_INFO_RAW), \
Jonathan Cameronb11f98f2012-04-15 17:41:18 +0100107 .address = AD_IN * _index, \
108 .scan_index = _index, \
Roland Stigge906ecf62012-02-14 19:44:56 +0100109}
110
Lars-Peter Clausenf4e4b952012-08-09 08:51:00 +0100111static const struct iio_chan_spec lpc32xx_adc_iio_channels[] = {
Roland Stigge906ecf62012-02-14 19:44:56 +0100112 LPC32XX_ADC_CHANNEL(0),
113 LPC32XX_ADC_CHANNEL(1),
114 LPC32XX_ADC_CHANNEL(2),
115};
116
117static irqreturn_t lpc32xx_adc_isr(int irq, void *dev_id)
118{
Tapasweni Pathak31f8f062014-10-30 17:02:25 +0530119 struct lpc32xx_adc_info *info = dev_id;
Roland Stigge906ecf62012-02-14 19:44:56 +0100120
121 /* Read value and clear irq */
122 info->value = __raw_readl(LPC32XX_ADC_VALUE(info->adc_base)) &
123 ADC_VALUE_MASK;
124 complete(&info->completion);
125
126 return IRQ_HANDLED;
127}
128
Bill Pemberton4ae1c612012-11-19 13:21:57 -0500129static int lpc32xx_adc_probe(struct platform_device *pdev)
Roland Stigge906ecf62012-02-14 19:44:56 +0100130{
131 struct lpc32xx_adc_info *info = NULL;
132 struct resource *res;
133 int retval = -ENODEV;
134 struct iio_dev *iodev = NULL;
135 int irq;
136
137 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
138 if (!res) {
139 dev_err(&pdev->dev, "failed to get platform I/O memory\n");
Sachin Kamat7d456e42013-08-31 18:12:00 +0100140 return -EBUSY;
Roland Stigge906ecf62012-02-14 19:44:56 +0100141 }
142
Sachin Kamat7d456e42013-08-31 18:12:00 +0100143 iodev = devm_iio_device_alloc(&pdev->dev, sizeof(*info));
144 if (!iodev)
145 return -ENOMEM;
Roland Stigge906ecf62012-02-14 19:44:56 +0100146
147 info = iio_priv(iodev);
148
Sachin Kamat7d456e42013-08-31 18:12:00 +0100149 info->adc_base = devm_ioremap(&pdev->dev, res->start,
150 resource_size(res));
Roland Stigge906ecf62012-02-14 19:44:56 +0100151 if (!info->adc_base) {
152 dev_err(&pdev->dev, "failed mapping memory\n");
Sachin Kamat7d456e42013-08-31 18:12:00 +0100153 return -EBUSY;
Roland Stigge906ecf62012-02-14 19:44:56 +0100154 }
155
Sachin Kamat7d456e42013-08-31 18:12:00 +0100156 info->clk = devm_clk_get(&pdev->dev, NULL);
Roland Stigge906ecf62012-02-14 19:44:56 +0100157 if (IS_ERR(info->clk)) {
158 dev_err(&pdev->dev, "failed getting clock\n");
Sachin Kamat7d456e42013-08-31 18:12:00 +0100159 return PTR_ERR(info->clk);
Roland Stigge906ecf62012-02-14 19:44:56 +0100160 }
161
162 irq = platform_get_irq(pdev, 0);
Lars-Peter Clausen2918ad12013-10-16 21:45:00 +0100163 if (irq <= 0) {
Roland Stigge906ecf62012-02-14 19:44:56 +0100164 dev_err(&pdev->dev, "failed getting interrupt resource\n");
Sachin Kamat7d456e42013-08-31 18:12:00 +0100165 return -EINVAL;
Roland Stigge906ecf62012-02-14 19:44:56 +0100166 }
167
Sachin Kamat7d456e42013-08-31 18:12:00 +0100168 retval = devm_request_irq(&pdev->dev, irq, lpc32xx_adc_isr, 0,
169 MOD_NAME, info);
Roland Stigge906ecf62012-02-14 19:44:56 +0100170 if (retval < 0) {
171 dev_err(&pdev->dev, "failed requesting interrupt\n");
Sachin Kamat7d456e42013-08-31 18:12:00 +0100172 return retval;
Roland Stigge906ecf62012-02-14 19:44:56 +0100173 }
174
175 platform_set_drvdata(pdev, iodev);
176
177 init_completion(&info->completion);
178
179 iodev->name = MOD_NAME;
180 iodev->dev.parent = &pdev->dev;
181 iodev->info = &lpc32xx_adc_iio_info;
182 iodev->modes = INDIO_DIRECT_MODE;
183 iodev->channels = lpc32xx_adc_iio_channels;
184 iodev->num_channels = ARRAY_SIZE(lpc32xx_adc_iio_channels);
185
Sachin Kamatafb6fd52013-10-29 11:39:00 +0000186 retval = devm_iio_device_register(&pdev->dev, iodev);
Roland Stigge906ecf62012-02-14 19:44:56 +0100187 if (retval)
Sachin Kamat7d456e42013-08-31 18:12:00 +0100188 return retval;
Roland Stigge906ecf62012-02-14 19:44:56 +0100189
190 dev_info(&pdev->dev, "LPC32XX ADC driver loaded, IRQ %d\n", irq);
191
192 return 0;
Roland Stigge906ecf62012-02-14 19:44:56 +0100193}
194
Roland Stigge1f9e3492012-04-21 10:10:16 +0200195#ifdef CONFIG_OF
196static const struct of_device_id lpc32xx_adc_match[] = {
197 { .compatible = "nxp,lpc3220-adc" },
198 {},
199};
200MODULE_DEVICE_TABLE(of, lpc32xx_adc_match);
201#endif
202
Roland Stigge906ecf62012-02-14 19:44:56 +0100203static struct platform_driver lpc32xx_adc_driver = {
204 .probe = lpc32xx_adc_probe,
Roland Stigge906ecf62012-02-14 19:44:56 +0100205 .driver = {
206 .name = MOD_NAME,
Roland Stigge1f9e3492012-04-21 10:10:16 +0200207 .of_match_table = of_match_ptr(lpc32xx_adc_match),
Roland Stigge906ecf62012-02-14 19:44:56 +0100208 },
209};
210
211module_platform_driver(lpc32xx_adc_driver);
212
213MODULE_AUTHOR("Roland Stigge <stigge@antcom.de>");
214MODULE_DESCRIPTION("LPC32XX ADC driver");
215MODULE_LICENSE("GPL");