blob: 4427e8e46a7fee759c3d7dd2782ff9307ea3941e [file] [log] [blame]
Patil, Rachna5e53a692012-10-16 12:55:45 +05301/*
2 * TI ADC MFD driver
3 *
4 * Copyright (C) 2012 Texas Instruments Incorporated - http://www.ti.com/
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation version 2.
9 *
10 * This program is distributed "as is" WITHOUT ANY WARRANTY of any
11 * kind, whether express or implied; without even the implied warranty
12 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 */
15
16#include <linux/init.h>
17#include <linux/kernel.h>
18#include <linux/err.h>
19#include <linux/module.h>
20#include <linux/slab.h>
21#include <linux/interrupt.h>
22#include <linux/platform_device.h>
23#include <linux/io.h>
24#include <linux/iio/iio.h>
Patil, Rachna6f39ac42013-01-24 03:45:11 +000025#include <linux/of.h>
26#include <linux/of_device.h>
Pantelis Antoniouc80df482012-10-13 16:37:24 +030027#include <linux/iio/machine.h>
28#include <linux/iio/driver.h>
Patil, Rachna5e53a692012-10-16 12:55:45 +053029
30#include <linux/mfd/ti_am335x_tscadc.h>
Patil, Rachna5e53a692012-10-16 12:55:45 +053031
32struct tiadc_device {
33 struct ti_tscadc_dev *mfd_tscadc;
34 int channels;
Sebastian Andrzej Siewior18926ed2013-05-29 17:39:02 +020035 u8 channel_line[8];
36 u8 channel_step[8];
Patil, Rachna5e53a692012-10-16 12:55:45 +053037};
38
39static unsigned int tiadc_readl(struct tiadc_device *adc, unsigned int reg)
40{
41 return readl(adc->mfd_tscadc->tscadc_base + reg);
42}
43
44static void tiadc_writel(struct tiadc_device *adc, unsigned int reg,
45 unsigned int val)
46{
47 writel(val, adc->mfd_tscadc->tscadc_base + reg);
48}
49
Patil, Rachnaabeccee2013-01-24 03:45:05 +000050static u32 get_adc_step_mask(struct tiadc_device *adc_dev)
51{
52 u32 step_en;
53
54 step_en = ((1 << adc_dev->channels) - 1);
55 step_en <<= TOTAL_STEPS - adc_dev->channels + 1;
56 return step_en;
57}
58
Patil, Rachna5e53a692012-10-16 12:55:45 +053059static void tiadc_step_config(struct tiadc_device *adc_dev)
60{
61 unsigned int stepconfig;
Sebastian Andrzej Siewior18926ed2013-05-29 17:39:02 +020062 int i, steps;
Patil, Rachnaabeccee2013-01-24 03:45:05 +000063 u32 step_en;
Patil, Rachna5e53a692012-10-16 12:55:45 +053064
65 /*
66 * There are 16 configurable steps and 8 analog input
67 * lines available which are shared between Touchscreen and ADC.
68 *
69 * Steps backwards i.e. from 16 towards 0 are used by ADC
70 * depending on number of input lines needed.
71 * Channel would represent which analog input
72 * needs to be given to ADC to digitalize data.
73 */
74
75 steps = TOTAL_STEPS - adc_dev->channels;
Patil, Rachna5e53a692012-10-16 12:55:45 +053076 stepconfig = STEPCONFIG_AVG_16 | STEPCONFIG_FIFO1;
77
Sebastian Andrzej Siewior18926ed2013-05-29 17:39:02 +020078 for (i = 0; i < adc_dev->channels; i++) {
79 int chan;
80
81 chan = adc_dev->channel_line[i];
82 tiadc_writel(adc_dev, REG_STEPCONFIG(steps),
83 stepconfig | STEPCONFIG_INP(chan));
84 tiadc_writel(adc_dev, REG_STEPDELAY(steps),
Patil, Rachna5e53a692012-10-16 12:55:45 +053085 STEPCONFIG_OPENDLY);
Sebastian Andrzej Siewior18926ed2013-05-29 17:39:02 +020086 adc_dev->channel_step[i] = steps;
87 steps++;
Patil, Rachna5e53a692012-10-16 12:55:45 +053088 }
Patil, Rachnaabeccee2013-01-24 03:45:05 +000089 step_en = get_adc_step_mask(adc_dev);
90 am335x_tsc_se_set(adc_dev->mfd_tscadc, step_en);
Patil, Rachna5e53a692012-10-16 12:55:45 +053091}
92
Pantelis Antoniouc80df482012-10-13 16:37:24 +030093static const char * const chan_name_ain[] = {
94 "AIN0",
95 "AIN1",
96 "AIN2",
97 "AIN3",
98 "AIN4",
99 "AIN5",
100 "AIN6",
101 "AIN7",
102};
103
Patil, Rachna5e53a692012-10-16 12:55:45 +0530104static int tiadc_channel_init(struct iio_dev *indio_dev, int channels)
105{
Pantelis Antoniouc80df482012-10-13 16:37:24 +0300106 struct tiadc_device *adc_dev = iio_priv(indio_dev);
Patil, Rachna5e53a692012-10-16 12:55:45 +0530107 struct iio_chan_spec *chan_array;
Pantelis Antoniouc80df482012-10-13 16:37:24 +0300108 struct iio_chan_spec *chan;
Patil, Rachna5e53a692012-10-16 12:55:45 +0530109 int i;
110
111 indio_dev->num_channels = channels;
Pantelis Antoniouc80df482012-10-13 16:37:24 +0300112 chan_array = kcalloc(channels,
Patil, Rachna5e53a692012-10-16 12:55:45 +0530113 sizeof(struct iio_chan_spec), GFP_KERNEL);
Patil, Rachna5e53a692012-10-16 12:55:45 +0530114 if (chan_array == NULL)
115 return -ENOMEM;
116
Pantelis Antoniouc80df482012-10-13 16:37:24 +0300117 chan = chan_array;
118 for (i = 0; i < channels; i++, chan++) {
119
Patil, Rachna5e53a692012-10-16 12:55:45 +0530120 chan->type = IIO_VOLTAGE;
121 chan->indexed = 1;
Sebastian Andrzej Siewior18926ed2013-05-29 17:39:02 +0200122 chan->channel = adc_dev->channel_line[i];
Jonathan Cameron6c572522013-02-27 19:07:18 +0000123 chan->info_mask_separate = BIT(IIO_CHAN_INFO_RAW);
Sebastian Andrzej Siewior18926ed2013-05-29 17:39:02 +0200124 chan->datasheet_name = chan_name_ain[chan->channel];
Pantelis Antoniouc80df482012-10-13 16:37:24 +0300125 chan->scan_type.sign = 'u';
126 chan->scan_type.realbits = 12;
127 chan->scan_type.storagebits = 32;
Patil, Rachna5e53a692012-10-16 12:55:45 +0530128 }
129
130 indio_dev->channels = chan_array;
131
Pantelis Antoniouc80df482012-10-13 16:37:24 +0300132 return 0;
Patil, Rachna5e53a692012-10-16 12:55:45 +0530133}
134
135static void tiadc_channels_remove(struct iio_dev *indio_dev)
136{
137 kfree(indio_dev->channels);
138}
139
140static int tiadc_read_raw(struct iio_dev *indio_dev,
141 struct iio_chan_spec const *chan,
142 int *val, int *val2, long mask)
143{
144 struct tiadc_device *adc_dev = iio_priv(indio_dev);
145 int i;
Sebastian Andrzej Siewior18926ed2013-05-29 17:39:02 +0200146 unsigned int fifo1count, read;
147 u32 step = UINT_MAX;
Sebastian Andrzej Siewior1460c152013-05-29 18:49:55 +0200148 bool found = false;
Patil, Rachna5e53a692012-10-16 12:55:45 +0530149
150 /*
151 * When the sub-system is first enabled,
152 * the sequencer will always start with the
153 * lowest step (1) and continue until step (16).
154 * For ex: If we have enabled 4 ADC channels and
155 * currently use only 1 out of them, the
156 * sequencer still configures all the 4 steps,
157 * leading to 3 unwanted data.
158 * Hence we need to flush out this data.
159 */
160
Sebastian Andrzej Siewior18926ed2013-05-29 17:39:02 +0200161 for (i = 0; i < ARRAY_SIZE(adc_dev->channel_step); i++) {
162 if (chan->channel == adc_dev->channel_line[i]) {
163 step = adc_dev->channel_step[i];
164 break;
165 }
166 }
167 if (WARN_ON_ONCE(step == UINT_MAX))
168 return -EINVAL;
169
Patil, Rachna5e53a692012-10-16 12:55:45 +0530170 fifo1count = tiadc_readl(adc_dev, REG_FIFO1CNT);
171 for (i = 0; i < fifo1count; i++) {
Sebastian Andrzej Siewior18926ed2013-05-29 17:39:02 +0200172 read = tiadc_readl(adc_dev, REG_FIFO1);
Sebastian Andrzej Siewior1460c152013-05-29 18:49:55 +0200173 if (read >> 16 == step) {
Sebastian Andrzej Siewior18926ed2013-05-29 17:39:02 +0200174 *val = read & 0xfff;
Sebastian Andrzej Siewior1460c152013-05-29 18:49:55 +0200175 found = true;
176 }
Patil, Rachna5e53a692012-10-16 12:55:45 +0530177 }
Patil, Rachnaabeccee2013-01-24 03:45:05 +0000178 am335x_tsc_se_update(adc_dev->mfd_tscadc);
Sebastian Andrzej Siewior1460c152013-05-29 18:49:55 +0200179 if (found == false)
180 return -EBUSY;
Patil, Rachna5e53a692012-10-16 12:55:45 +0530181 return IIO_VAL_INT;
182}
183
184static const struct iio_info tiadc_info = {
185 .read_raw = &tiadc_read_raw,
186};
187
Greg Kroah-Hartmanfc526922012-12-21 13:21:43 -0800188static int tiadc_probe(struct platform_device *pdev)
Patil, Rachna5e53a692012-10-16 12:55:45 +0530189{
190 struct iio_dev *indio_dev;
191 struct tiadc_device *adc_dev;
Patil, Rachna6f39ac42013-01-24 03:45:11 +0000192 struct device_node *node = pdev->dev.of_node;
Sebastian Andrzej Siewior18926ed2013-05-29 17:39:02 +0200193 struct property *prop;
194 const __be32 *cur;
Patil, Rachna5e53a692012-10-16 12:55:45 +0530195 int err;
Sebastian Andrzej Siewior18926ed2013-05-29 17:39:02 +0200196 u32 val;
197 int channels = 0;
Patil, Rachna5e53a692012-10-16 12:55:45 +0530198
Sebastian Andrzej Siewior0ead4fb2013-05-21 17:49:22 +0200199 if (!node) {
200 dev_err(&pdev->dev, "Could not find valid DT data.\n");
Patil, Rachna5e53a692012-10-16 12:55:45 +0530201 return -EINVAL;
202 }
203
204 indio_dev = iio_device_alloc(sizeof(struct tiadc_device));
205 if (indio_dev == NULL) {
206 dev_err(&pdev->dev, "failed to allocate iio device\n");
207 err = -ENOMEM;
208 goto err_ret;
209 }
210 adc_dev = iio_priv(indio_dev);
211
Patil, Rachna6f39ac42013-01-24 03:45:11 +0000212 adc_dev->mfd_tscadc = ti_tscadc_dev_get(pdev);
213
Sebastian Andrzej Siewior18926ed2013-05-29 17:39:02 +0200214 of_property_for_each_u32(node, "ti,adc-channels", prop, cur, val) {
215 adc_dev->channel_line[channels] = val;
216 channels++;
217 }
218 adc_dev->channels = channels;
Patil, Rachna5e53a692012-10-16 12:55:45 +0530219
220 indio_dev->dev.parent = &pdev->dev;
221 indio_dev->name = dev_name(&pdev->dev);
222 indio_dev->modes = INDIO_DIRECT_MODE;
223 indio_dev->info = &tiadc_info;
224
225 tiadc_step_config(adc_dev);
226
227 err = tiadc_channel_init(indio_dev, adc_dev->channels);
228 if (err < 0)
229 goto err_free_device;
230
231 err = iio_device_register(indio_dev);
232 if (err)
233 goto err_free_channels;
234
235 platform_set_drvdata(pdev, indio_dev);
236
237 return 0;
238
239err_free_channels:
240 tiadc_channels_remove(indio_dev);
241err_free_device:
242 iio_device_free(indio_dev);
243err_ret:
244 return err;
245}
246
Greg Kroah-Hartmanfc526922012-12-21 13:21:43 -0800247static int tiadc_remove(struct platform_device *pdev)
Patil, Rachna5e53a692012-10-16 12:55:45 +0530248{
249 struct iio_dev *indio_dev = platform_get_drvdata(pdev);
Patil, Rachnaabeccee2013-01-24 03:45:05 +0000250 struct tiadc_device *adc_dev = iio_priv(indio_dev);
251 u32 step_en;
Patil, Rachna5e53a692012-10-16 12:55:45 +0530252
253 iio_device_unregister(indio_dev);
254 tiadc_channels_remove(indio_dev);
255
Patil, Rachnaabeccee2013-01-24 03:45:05 +0000256 step_en = get_adc_step_mask(adc_dev);
257 am335x_tsc_se_clr(adc_dev->mfd_tscadc, step_en);
258
Patil, Rachna5e53a692012-10-16 12:55:45 +0530259 iio_device_free(indio_dev);
260
261 return 0;
262}
263
264#ifdef CONFIG_PM
265static int tiadc_suspend(struct device *dev)
266{
267 struct iio_dev *indio_dev = dev_get_drvdata(dev);
268 struct tiadc_device *adc_dev = iio_priv(indio_dev);
Sebastian Andrzej Siewiora9bce1b2013-06-05 16:13:47 +0200269 struct ti_tscadc_dev *tscadc_dev;
Patil, Rachna5e53a692012-10-16 12:55:45 +0530270 unsigned int idle;
271
Sebastian Andrzej Siewiora9bce1b2013-06-05 16:13:47 +0200272 tscadc_dev = ti_tscadc_dev_get(to_platform_device(dev));
Patil, Rachna5e53a692012-10-16 12:55:45 +0530273 if (!device_may_wakeup(tscadc_dev->dev)) {
274 idle = tiadc_readl(adc_dev, REG_CTRL);
275 idle &= ~(CNTRLREG_TSCSSENB);
276 tiadc_writel(adc_dev, REG_CTRL, (idle |
277 CNTRLREG_POWERDOWN));
278 }
279
280 return 0;
281}
282
283static int tiadc_resume(struct device *dev)
284{
285 struct iio_dev *indio_dev = dev_get_drvdata(dev);
286 struct tiadc_device *adc_dev = iio_priv(indio_dev);
287 unsigned int restore;
288
289 /* Make sure ADC is powered up */
290 restore = tiadc_readl(adc_dev, REG_CTRL);
291 restore &= ~(CNTRLREG_POWERDOWN);
292 tiadc_writel(adc_dev, REG_CTRL, restore);
293
294 tiadc_step_config(adc_dev);
295
296 return 0;
297}
298
299static const struct dev_pm_ops tiadc_pm_ops = {
300 .suspend = tiadc_suspend,
301 .resume = tiadc_resume,
302};
303#define TIADC_PM_OPS (&tiadc_pm_ops)
304#else
305#define TIADC_PM_OPS NULL
306#endif
307
Patil, Rachna6f39ac42013-01-24 03:45:11 +0000308static const struct of_device_id ti_adc_dt_ids[] = {
309 { .compatible = "ti,am3359-adc", },
310 { }
311};
312MODULE_DEVICE_TABLE(of, ti_adc_dt_ids);
313
Patil, Rachna5e53a692012-10-16 12:55:45 +0530314static struct platform_driver tiadc_driver = {
315 .driver = {
Sebastian Andrzej Siewior9f999282013-05-27 17:12:52 +0200316 .name = "TI-am335x-adc",
Patil, Rachna5e53a692012-10-16 12:55:45 +0530317 .owner = THIS_MODULE,
318 .pm = TIADC_PM_OPS,
Patil, Rachna6f39ac42013-01-24 03:45:11 +0000319 .of_match_table = of_match_ptr(ti_adc_dt_ids),
Patil, Rachna5e53a692012-10-16 12:55:45 +0530320 },
321 .probe = tiadc_probe,
Greg Kroah-Hartmanfc526922012-12-21 13:21:43 -0800322 .remove = tiadc_remove,
Patil, Rachna5e53a692012-10-16 12:55:45 +0530323};
Patil, Rachna5e53a692012-10-16 12:55:45 +0530324module_platform_driver(tiadc_driver);
325
326MODULE_DESCRIPTION("TI ADC controller driver");
327MODULE_AUTHOR("Rachna Patil <rachna@ti.com>");
328MODULE_LICENSE("GPL");