]> git.ipfire.org Git - thirdparty/kernel/stable.git/blob - drivers/iio/adc/fsl-imx25-gcq.c
Merge branch 'spectre' of git://git.armlinux.org.uk/~rmk/linux-arm
[thirdparty/kernel/stable.git] / drivers / iio / adc / fsl-imx25-gcq.c
1 /*
2 * Copyright (C) 2014-2015 Pengutronix, Markus Pargmann <mpa@pengutronix.de>
3 *
4 * This program is free software; you can redistribute it and/or modify it under
5 * the terms of the GNU General Public License version 2 as published by the
6 * Free Software Foundation.
7 *
8 * This is the driver for the imx25 GCQ (Generic Conversion Queue)
9 * connected to the imx25 ADC.
10 */
11
12 #include <dt-bindings/iio/adc/fsl-imx25-gcq.h>
13 #include <linux/clk.h>
14 #include <linux/iio/iio.h>
15 #include <linux/interrupt.h>
16 #include <linux/mfd/imx25-tsadc.h>
17 #include <linux/module.h>
18 #include <linux/of.h>
19 #include <linux/platform_device.h>
20 #include <linux/regmap.h>
21 #include <linux/regulator/consumer.h>
22
23 #define MX25_GCQ_TIMEOUT (msecs_to_jiffies(2000))
24
25 static const char * const driver_name = "mx25-gcq";
26
27 enum mx25_gcq_cfgs {
28 MX25_CFG_XP = 0,
29 MX25_CFG_YP,
30 MX25_CFG_XN,
31 MX25_CFG_YN,
32 MX25_CFG_WIPER,
33 MX25_CFG_INAUX0,
34 MX25_CFG_INAUX1,
35 MX25_CFG_INAUX2,
36 MX25_NUM_CFGS,
37 };
38
39 struct mx25_gcq_priv {
40 struct regmap *regs;
41 struct completion completed;
42 struct clk *clk;
43 int irq;
44 struct regulator *vref[4];
45 u32 channel_vref_mv[MX25_NUM_CFGS];
46 };
47
48 #define MX25_CQG_CHAN(chan, id) {\
49 .type = IIO_VOLTAGE,\
50 .indexed = 1,\
51 .channel = chan,\
52 .info_mask_separate = BIT(IIO_CHAN_INFO_RAW) | \
53 BIT(IIO_CHAN_INFO_SCALE),\
54 .datasheet_name = id,\
55 }
56
57 static const struct iio_chan_spec mx25_gcq_channels[MX25_NUM_CFGS] = {
58 MX25_CQG_CHAN(MX25_CFG_XP, "xp"),
59 MX25_CQG_CHAN(MX25_CFG_YP, "yp"),
60 MX25_CQG_CHAN(MX25_CFG_XN, "xn"),
61 MX25_CQG_CHAN(MX25_CFG_YN, "yn"),
62 MX25_CQG_CHAN(MX25_CFG_WIPER, "wiper"),
63 MX25_CQG_CHAN(MX25_CFG_INAUX0, "inaux0"),
64 MX25_CQG_CHAN(MX25_CFG_INAUX1, "inaux1"),
65 MX25_CQG_CHAN(MX25_CFG_INAUX2, "inaux2"),
66 };
67
68 static const char * const mx25_gcq_refp_names[] = {
69 [MX25_ADC_REFP_YP] = "yp",
70 [MX25_ADC_REFP_XP] = "xp",
71 [MX25_ADC_REFP_INT] = "int",
72 [MX25_ADC_REFP_EXT] = "ext",
73 };
74
75 static irqreturn_t mx25_gcq_irq(int irq, void *data)
76 {
77 struct mx25_gcq_priv *priv = data;
78 u32 stats;
79
80 regmap_read(priv->regs, MX25_ADCQ_SR, &stats);
81
82 if (stats & MX25_ADCQ_SR_EOQ) {
83 regmap_update_bits(priv->regs, MX25_ADCQ_MR,
84 MX25_ADCQ_MR_EOQ_IRQ, MX25_ADCQ_MR_EOQ_IRQ);
85 complete(&priv->completed);
86 }
87
88 /* Disable conversion queue run */
89 regmap_update_bits(priv->regs, MX25_ADCQ_CR, MX25_ADCQ_CR_FQS, 0);
90
91 /* Acknowledge all possible irqs */
92 regmap_write(priv->regs, MX25_ADCQ_SR, MX25_ADCQ_SR_FRR |
93 MX25_ADCQ_SR_FUR | MX25_ADCQ_SR_FOR |
94 MX25_ADCQ_SR_EOQ | MX25_ADCQ_SR_PD);
95
96 return IRQ_HANDLED;
97 }
98
99 static int mx25_gcq_get_raw_value(struct device *dev,
100 struct iio_chan_spec const *chan,
101 struct mx25_gcq_priv *priv,
102 int *val)
103 {
104 long timeout;
105 u32 data;
106
107 /* Setup the configuration we want to use */
108 regmap_write(priv->regs, MX25_ADCQ_ITEM_7_0,
109 MX25_ADCQ_ITEM(0, chan->channel));
110
111 regmap_update_bits(priv->regs, MX25_ADCQ_MR, MX25_ADCQ_MR_EOQ_IRQ, 0);
112
113 /* Trigger queue for one run */
114 regmap_update_bits(priv->regs, MX25_ADCQ_CR, MX25_ADCQ_CR_FQS,
115 MX25_ADCQ_CR_FQS);
116
117 timeout = wait_for_completion_interruptible_timeout(
118 &priv->completed, MX25_GCQ_TIMEOUT);
119 if (timeout < 0) {
120 dev_err(dev, "ADC wait for measurement failed\n");
121 return timeout;
122 } else if (timeout == 0) {
123 dev_err(dev, "ADC timed out\n");
124 return -ETIMEDOUT;
125 }
126
127 regmap_read(priv->regs, MX25_ADCQ_FIFO, &data);
128
129 *val = MX25_ADCQ_FIFO_DATA(data);
130
131 return IIO_VAL_INT;
132 }
133
134 static int mx25_gcq_read_raw(struct iio_dev *indio_dev,
135 struct iio_chan_spec const *chan, int *val,
136 int *val2, long mask)
137 {
138 struct mx25_gcq_priv *priv = iio_priv(indio_dev);
139 int ret;
140
141 switch (mask) {
142 case IIO_CHAN_INFO_RAW:
143 mutex_lock(&indio_dev->mlock);
144 ret = mx25_gcq_get_raw_value(&indio_dev->dev, chan, priv, val);
145 mutex_unlock(&indio_dev->mlock);
146 return ret;
147
148 case IIO_CHAN_INFO_SCALE:
149 *val = priv->channel_vref_mv[chan->channel];
150 *val2 = 12;
151 return IIO_VAL_FRACTIONAL_LOG2;
152
153 default:
154 return -EINVAL;
155 }
156 }
157
158 static const struct iio_info mx25_gcq_iio_info = {
159 .read_raw = mx25_gcq_read_raw,
160 };
161
162 static const struct regmap_config mx25_gcq_regconfig = {
163 .max_register = 0x5c,
164 .reg_bits = 32,
165 .val_bits = 32,
166 .reg_stride = 4,
167 };
168
169 static int mx25_gcq_setup_cfgs(struct platform_device *pdev,
170 struct mx25_gcq_priv *priv)
171 {
172 struct device_node *np = pdev->dev.of_node;
173 struct device_node *child;
174 struct device *dev = &pdev->dev;
175 unsigned int refp_used[4] = {};
176 int ret, i;
177
178 /*
179 * Setup all configurations registers with a default conversion
180 * configuration for each input
181 */
182 for (i = 0; i < MX25_NUM_CFGS; ++i)
183 regmap_write(priv->regs, MX25_ADCQ_CFG(i),
184 MX25_ADCQ_CFG_YPLL_OFF |
185 MX25_ADCQ_CFG_XNUR_OFF |
186 MX25_ADCQ_CFG_XPUL_OFF |
187 MX25_ADCQ_CFG_REFP_INT |
188 MX25_ADCQ_CFG_IN(i) |
189 MX25_ADCQ_CFG_REFN_NGND2);
190
191 /*
192 * First get all regulators to store them in channel_vref_mv if
193 * necessary. Later we use that information for proper IIO scale
194 * information.
195 */
196 priv->vref[MX25_ADC_REFP_INT] = NULL;
197 priv->vref[MX25_ADC_REFP_EXT] =
198 devm_regulator_get_optional(&pdev->dev, "vref-ext");
199 priv->vref[MX25_ADC_REFP_XP] =
200 devm_regulator_get_optional(&pdev->dev, "vref-xp");
201 priv->vref[MX25_ADC_REFP_YP] =
202 devm_regulator_get_optional(&pdev->dev, "vref-yp");
203
204 for_each_child_of_node(np, child) {
205 u32 reg;
206 u32 refp = MX25_ADCQ_CFG_REFP_INT;
207 u32 refn = MX25_ADCQ_CFG_REFN_NGND2;
208
209 ret = of_property_read_u32(child, "reg", &reg);
210 if (ret) {
211 dev_err(dev, "Failed to get reg property\n");
212 of_node_put(child);
213 return ret;
214 }
215
216 if (reg >= MX25_NUM_CFGS) {
217 dev_err(dev,
218 "reg value is greater than the number of available configuration registers\n");
219 of_node_put(child);
220 return -EINVAL;
221 }
222
223 of_property_read_u32(child, "fsl,adc-refp", &refp);
224 of_property_read_u32(child, "fsl,adc-refn", &refn);
225
226 switch (refp) {
227 case MX25_ADC_REFP_EXT:
228 case MX25_ADC_REFP_XP:
229 case MX25_ADC_REFP_YP:
230 if (IS_ERR(priv->vref[refp])) {
231 dev_err(dev, "Error, trying to use external voltage reference without a vref-%s regulator.",
232 mx25_gcq_refp_names[refp]);
233 of_node_put(child);
234 return PTR_ERR(priv->vref[refp]);
235 }
236 priv->channel_vref_mv[reg] =
237 regulator_get_voltage(priv->vref[refp]);
238 /* Conversion from uV to mV */
239 priv->channel_vref_mv[reg] /= 1000;
240 break;
241 case MX25_ADC_REFP_INT:
242 priv->channel_vref_mv[reg] = 2500;
243 break;
244 default:
245 dev_err(dev, "Invalid positive reference %d\n", refp);
246 of_node_put(child);
247 return -EINVAL;
248 }
249
250 ++refp_used[refp];
251
252 /*
253 * Shift the read values to the correct positions within the
254 * register.
255 */
256 refp = MX25_ADCQ_CFG_REFP(refp);
257 refn = MX25_ADCQ_CFG_REFN(refn);
258
259 if ((refp & MX25_ADCQ_CFG_REFP_MASK) != refp) {
260 dev_err(dev, "Invalid fsl,adc-refp property value\n");
261 of_node_put(child);
262 return -EINVAL;
263 }
264 if ((refn & MX25_ADCQ_CFG_REFN_MASK) != refn) {
265 dev_err(dev, "Invalid fsl,adc-refn property value\n");
266 of_node_put(child);
267 return -EINVAL;
268 }
269
270 regmap_update_bits(priv->regs, MX25_ADCQ_CFG(reg),
271 MX25_ADCQ_CFG_REFP_MASK |
272 MX25_ADCQ_CFG_REFN_MASK,
273 refp | refn);
274 }
275 regmap_update_bits(priv->regs, MX25_ADCQ_CR,
276 MX25_ADCQ_CR_FRST | MX25_ADCQ_CR_QRST,
277 MX25_ADCQ_CR_FRST | MX25_ADCQ_CR_QRST);
278
279 regmap_write(priv->regs, MX25_ADCQ_CR,
280 MX25_ADCQ_CR_PDMSK | MX25_ADCQ_CR_QSM_FQS);
281
282 /* Remove unused regulators */
283 for (i = 0; i != 4; ++i) {
284 if (!refp_used[i]) {
285 if (!IS_ERR_OR_NULL(priv->vref[i]))
286 devm_regulator_put(priv->vref[i]);
287 priv->vref[i] = NULL;
288 }
289 }
290
291 return 0;
292 }
293
294 static int mx25_gcq_probe(struct platform_device *pdev)
295 {
296 struct iio_dev *indio_dev;
297 struct mx25_gcq_priv *priv;
298 struct mx25_tsadc *tsadc = dev_get_drvdata(pdev->dev.parent);
299 struct device *dev = &pdev->dev;
300 struct resource *res;
301 void __iomem *mem;
302 int ret;
303 int i;
304
305 indio_dev = devm_iio_device_alloc(&pdev->dev, sizeof(*priv));
306 if (!indio_dev)
307 return -ENOMEM;
308
309 priv = iio_priv(indio_dev);
310
311 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
312 mem = devm_ioremap_resource(dev, res);
313 if (IS_ERR(mem))
314 return PTR_ERR(mem);
315
316 priv->regs = devm_regmap_init_mmio(dev, mem, &mx25_gcq_regconfig);
317 if (IS_ERR(priv->regs)) {
318 dev_err(dev, "Failed to initialize regmap\n");
319 return PTR_ERR(priv->regs);
320 }
321
322 init_completion(&priv->completed);
323
324 ret = mx25_gcq_setup_cfgs(pdev, priv);
325 if (ret)
326 return ret;
327
328 for (i = 0; i != 4; ++i) {
329 if (!priv->vref[i])
330 continue;
331
332 ret = regulator_enable(priv->vref[i]);
333 if (ret)
334 goto err_regulator_disable;
335 }
336
337 priv->clk = tsadc->clk;
338 ret = clk_prepare_enable(priv->clk);
339 if (ret) {
340 dev_err(dev, "Failed to enable clock\n");
341 goto err_vref_disable;
342 }
343
344 priv->irq = platform_get_irq(pdev, 0);
345 if (priv->irq <= 0) {
346 dev_err(dev, "Failed to get IRQ\n");
347 ret = priv->irq;
348 if (!ret)
349 ret = -ENXIO;
350 goto err_clk_unprepare;
351 }
352
353 ret = request_irq(priv->irq, mx25_gcq_irq, 0, pdev->name, priv);
354 if (ret) {
355 dev_err(dev, "Failed requesting IRQ\n");
356 goto err_clk_unprepare;
357 }
358
359 indio_dev->dev.parent = &pdev->dev;
360 indio_dev->channels = mx25_gcq_channels;
361 indio_dev->num_channels = ARRAY_SIZE(mx25_gcq_channels);
362 indio_dev->info = &mx25_gcq_iio_info;
363 indio_dev->name = driver_name;
364
365 ret = iio_device_register(indio_dev);
366 if (ret) {
367 dev_err(dev, "Failed to register iio device\n");
368 goto err_irq_free;
369 }
370
371 platform_set_drvdata(pdev, indio_dev);
372
373 return 0;
374
375 err_irq_free:
376 free_irq(priv->irq, priv);
377 err_clk_unprepare:
378 clk_disable_unprepare(priv->clk);
379 err_vref_disable:
380 i = 4;
381 err_regulator_disable:
382 for (; i-- > 0;) {
383 if (priv->vref[i])
384 regulator_disable(priv->vref[i]);
385 }
386 return ret;
387 }
388
389 static int mx25_gcq_remove(struct platform_device *pdev)
390 {
391 struct iio_dev *indio_dev = platform_get_drvdata(pdev);
392 struct mx25_gcq_priv *priv = iio_priv(indio_dev);
393 int i;
394
395 iio_device_unregister(indio_dev);
396 free_irq(priv->irq, priv);
397 clk_disable_unprepare(priv->clk);
398 for (i = 4; i-- > 0;) {
399 if (priv->vref[i])
400 regulator_disable(priv->vref[i]);
401 }
402
403 return 0;
404 }
405
406 static const struct of_device_id mx25_gcq_ids[] = {
407 { .compatible = "fsl,imx25-gcq", },
408 { /* Sentinel */ }
409 };
410 MODULE_DEVICE_TABLE(of, mx25_gcq_ids);
411
412 static struct platform_driver mx25_gcq_driver = {
413 .driver = {
414 .name = "mx25-gcq",
415 .of_match_table = mx25_gcq_ids,
416 },
417 .probe = mx25_gcq_probe,
418 .remove = mx25_gcq_remove,
419 };
420 module_platform_driver(mx25_gcq_driver);
421
422 MODULE_DESCRIPTION("ADC driver for Freescale mx25");
423 MODULE_AUTHOR("Markus Pargmann <mpa@pengutronix.de>");
424 MODULE_LICENSE("GPL v2");