net: qmi_wwan: add Olivetti Olicard 500
[linux/fpc-iii.git] / drivers / iio / adc / exynos_adc.c
blobd25b262193a7d4bccad40a42b79685cf4956e6fc
1 /*
2 * exynos_adc.c - Support for ADC in EXYNOS SoCs
4 * 8 ~ 10 channel, 10/12-bit ADC
6 * Copyright (C) 2013 Naveen Krishna Chatradhi <ch.naveen@samsung.com>
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.
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.
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.
23 #include <linux/module.h>
24 #include <linux/platform_device.h>
25 #include <linux/interrupt.h>
26 #include <linux/delay.h>
27 #include <linux/kernel.h>
28 #include <linux/slab.h>
29 #include <linux/io.h>
30 #include <linux/clk.h>
31 #include <linux/completion.h>
32 #include <linux/of.h>
33 #include <linux/of_irq.h>
34 #include <linux/regulator/consumer.h>
35 #include <linux/of_platform.h>
36 #include <linux/err.h>
38 #include <linux/iio/iio.h>
39 #include <linux/iio/machine.h>
40 #include <linux/iio/driver.h>
42 enum adc_version {
43 ADC_V1,
44 ADC_V2
47 /* EXYNOS4412/5250 ADC_V1 registers definitions */
48 #define ADC_V1_CON(x) ((x) + 0x00)
49 #define ADC_V1_DLY(x) ((x) + 0x08)
50 #define ADC_V1_DATX(x) ((x) + 0x0C)
51 #define ADC_V1_INTCLR(x) ((x) + 0x18)
52 #define ADC_V1_MUX(x) ((x) + 0x1c)
54 /* Future ADC_V2 registers definitions */
55 #define ADC_V2_CON1(x) ((x) + 0x00)
56 #define ADC_V2_CON2(x) ((x) + 0x04)
57 #define ADC_V2_STAT(x) ((x) + 0x08)
58 #define ADC_V2_INT_EN(x) ((x) + 0x10)
59 #define ADC_V2_INT_ST(x) ((x) + 0x14)
60 #define ADC_V2_VER(x) ((x) + 0x20)
62 /* Bit definitions for ADC_V1 */
63 #define ADC_V1_CON_RES (1u << 16)
64 #define ADC_V1_CON_PRSCEN (1u << 14)
65 #define ADC_V1_CON_PRSCLV(x) (((x) & 0xFF) << 6)
66 #define ADC_V1_CON_STANDBY (1u << 2)
68 /* Bit definitions for ADC_V2 */
69 #define ADC_V2_CON1_SOFT_RESET (1u << 2)
71 #define ADC_V2_CON2_OSEL (1u << 10)
72 #define ADC_V2_CON2_ESEL (1u << 9)
73 #define ADC_V2_CON2_HIGHF (1u << 8)
74 #define ADC_V2_CON2_C_TIME(x) (((x) & 7) << 4)
75 #define ADC_V2_CON2_ACH_SEL(x) (((x) & 0xF) << 0)
76 #define ADC_V2_CON2_ACH_MASK 0xF
78 #define MAX_ADC_V2_CHANNELS 10
79 #define MAX_ADC_V1_CHANNELS 8
81 /* Bit definitions common for ADC_V1 and ADC_V2 */
82 #define ADC_CON_EN_START (1u << 0)
83 #define ADC_DATX_MASK 0xFFF
85 #define EXYNOS_ADC_TIMEOUT (msecs_to_jiffies(1000))
87 struct exynos_adc {
88 void __iomem *regs;
89 void __iomem *enable_reg;
90 struct clk *clk;
91 unsigned int irq;
92 struct regulator *vdd;
94 struct completion completion;
96 u32 value;
97 unsigned int version;
100 static const struct of_device_id exynos_adc_match[] = {
101 { .compatible = "samsung,exynos-adc-v1", .data = (void *)ADC_V1 },
102 { .compatible = "samsung,exynos-adc-v2", .data = (void *)ADC_V2 },
105 MODULE_DEVICE_TABLE(of, exynos_adc_match);
107 static inline unsigned int exynos_adc_get_version(struct platform_device *pdev)
109 const struct of_device_id *match;
111 match = of_match_node(exynos_adc_match, pdev->dev.of_node);
112 return (unsigned int)match->data;
115 static int exynos_read_raw(struct iio_dev *indio_dev,
116 struct iio_chan_spec const *chan,
117 int *val,
118 int *val2,
119 long mask)
121 struct exynos_adc *info = iio_priv(indio_dev);
122 unsigned long timeout;
123 u32 con1, con2;
125 if (mask != IIO_CHAN_INFO_RAW)
126 return -EINVAL;
128 mutex_lock(&indio_dev->mlock);
130 /* Select the channel to be used and Trigger conversion */
131 if (info->version == ADC_V2) {
132 con2 = readl(ADC_V2_CON2(info->regs));
133 con2 &= ~ADC_V2_CON2_ACH_MASK;
134 con2 |= ADC_V2_CON2_ACH_SEL(chan->address);
135 writel(con2, ADC_V2_CON2(info->regs));
137 con1 = readl(ADC_V2_CON1(info->regs));
138 writel(con1 | ADC_CON_EN_START,
139 ADC_V2_CON1(info->regs));
140 } else {
141 writel(chan->address, ADC_V1_MUX(info->regs));
143 con1 = readl(ADC_V1_CON(info->regs));
144 writel(con1 | ADC_CON_EN_START,
145 ADC_V1_CON(info->regs));
148 timeout = wait_for_completion_interruptible_timeout
149 (&info->completion, EXYNOS_ADC_TIMEOUT);
150 *val = info->value;
152 mutex_unlock(&indio_dev->mlock);
154 if (timeout == 0)
155 return -ETIMEDOUT;
157 return IIO_VAL_INT;
160 static irqreturn_t exynos_adc_isr(int irq, void *dev_id)
162 struct exynos_adc *info = (struct exynos_adc *)dev_id;
164 /* Read value */
165 info->value = readl(ADC_V1_DATX(info->regs)) &
166 ADC_DATX_MASK;
167 /* clear irq */
168 if (info->version == ADC_V2)
169 writel(1, ADC_V2_INT_ST(info->regs));
170 else
171 writel(1, ADC_V1_INTCLR(info->regs));
173 complete(&info->completion);
175 return IRQ_HANDLED;
178 static int exynos_adc_reg_access(struct iio_dev *indio_dev,
179 unsigned reg, unsigned writeval,
180 unsigned *readval)
182 struct exynos_adc *info = iio_priv(indio_dev);
184 if (readval == NULL)
185 return -EINVAL;
187 *readval = readl(info->regs + reg);
189 return 0;
192 static const struct iio_info exynos_adc_iio_info = {
193 .read_raw = &exynos_read_raw,
194 .debugfs_reg_access = &exynos_adc_reg_access,
195 .driver_module = THIS_MODULE,
198 #define ADC_CHANNEL(_index, _id) { \
199 .type = IIO_VOLTAGE, \
200 .indexed = 1, \
201 .channel = _index, \
202 .address = _index, \
203 .info_mask_separate = BIT(IIO_CHAN_INFO_RAW), \
204 .datasheet_name = _id, \
207 static const struct iio_chan_spec exynos_adc_iio_channels[] = {
208 ADC_CHANNEL(0, "adc0"),
209 ADC_CHANNEL(1, "adc1"),
210 ADC_CHANNEL(2, "adc2"),
211 ADC_CHANNEL(3, "adc3"),
212 ADC_CHANNEL(4, "adc4"),
213 ADC_CHANNEL(5, "adc5"),
214 ADC_CHANNEL(6, "adc6"),
215 ADC_CHANNEL(7, "adc7"),
216 ADC_CHANNEL(8, "adc8"),
217 ADC_CHANNEL(9, "adc9"),
220 static int exynos_adc_remove_devices(struct device *dev, void *c)
222 struct platform_device *pdev = to_platform_device(dev);
224 platform_device_unregister(pdev);
226 return 0;
229 static void exynos_adc_hw_init(struct exynos_adc *info)
231 u32 con1, con2;
233 if (info->version == ADC_V2) {
234 con1 = ADC_V2_CON1_SOFT_RESET;
235 writel(con1, ADC_V2_CON1(info->regs));
237 con2 = ADC_V2_CON2_OSEL | ADC_V2_CON2_ESEL |
238 ADC_V2_CON2_HIGHF | ADC_V2_CON2_C_TIME(0);
239 writel(con2, ADC_V2_CON2(info->regs));
241 /* Enable interrupts */
242 writel(1, ADC_V2_INT_EN(info->regs));
243 } else {
244 /* set default prescaler values and Enable prescaler */
245 con1 = ADC_V1_CON_PRSCLV(49) | ADC_V1_CON_PRSCEN;
247 /* Enable 12-bit ADC resolution */
248 con1 |= ADC_V1_CON_RES;
249 writel(con1, ADC_V1_CON(info->regs));
253 static int exynos_adc_probe(struct platform_device *pdev)
255 struct exynos_adc *info = NULL;
256 struct device_node *np = pdev->dev.of_node;
257 struct iio_dev *indio_dev = NULL;
258 struct resource *mem;
259 int ret = -ENODEV;
260 int irq;
262 if (!np)
263 return ret;
265 indio_dev = devm_iio_device_alloc(&pdev->dev, sizeof(struct exynos_adc));
266 if (!indio_dev) {
267 dev_err(&pdev->dev, "failed allocating iio device\n");
268 return -ENOMEM;
271 info = iio_priv(indio_dev);
273 mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
274 info->regs = devm_ioremap_resource(&pdev->dev, mem);
275 if (IS_ERR(info->regs))
276 return PTR_ERR(info->regs);
278 mem = platform_get_resource(pdev, IORESOURCE_MEM, 1);
279 info->enable_reg = devm_ioremap_resource(&pdev->dev, mem);
280 if (IS_ERR(info->enable_reg))
281 return PTR_ERR(info->enable_reg);
283 irq = platform_get_irq(pdev, 0);
284 if (irq < 0) {
285 dev_err(&pdev->dev, "no irq resource?\n");
286 return irq;
289 info->irq = irq;
291 init_completion(&info->completion);
293 ret = request_irq(info->irq, exynos_adc_isr,
294 0, dev_name(&pdev->dev), info);
295 if (ret < 0) {
296 dev_err(&pdev->dev, "failed requesting irq, irq = %d\n",
297 info->irq);
298 return ret;
301 writel(1, info->enable_reg);
303 info->clk = devm_clk_get(&pdev->dev, "adc");
304 if (IS_ERR(info->clk)) {
305 dev_err(&pdev->dev, "failed getting clock, err = %ld\n",
306 PTR_ERR(info->clk));
307 ret = PTR_ERR(info->clk);
308 goto err_irq;
311 info->vdd = devm_regulator_get(&pdev->dev, "vdd");
312 if (IS_ERR(info->vdd)) {
313 dev_err(&pdev->dev, "failed getting regulator, err = %ld\n",
314 PTR_ERR(info->vdd));
315 ret = PTR_ERR(info->vdd);
316 goto err_irq;
319 info->version = exynos_adc_get_version(pdev);
321 platform_set_drvdata(pdev, indio_dev);
323 indio_dev->name = dev_name(&pdev->dev);
324 indio_dev->dev.parent = &pdev->dev;
325 indio_dev->dev.of_node = pdev->dev.of_node;
326 indio_dev->info = &exynos_adc_iio_info;
327 indio_dev->modes = INDIO_DIRECT_MODE;
328 indio_dev->channels = exynos_adc_iio_channels;
330 if (info->version == ADC_V1)
331 indio_dev->num_channels = MAX_ADC_V1_CHANNELS;
332 else
333 indio_dev->num_channels = MAX_ADC_V2_CHANNELS;
335 ret = iio_device_register(indio_dev);
336 if (ret)
337 goto err_irq;
339 ret = regulator_enable(info->vdd);
340 if (ret)
341 goto err_iio_dev;
343 clk_prepare_enable(info->clk);
345 exynos_adc_hw_init(info);
347 ret = of_platform_populate(np, exynos_adc_match, NULL, &pdev->dev);
348 if (ret < 0) {
349 dev_err(&pdev->dev, "failed adding child nodes\n");
350 goto err_of_populate;
353 return 0;
355 err_of_populate:
356 device_for_each_child(&pdev->dev, NULL,
357 exynos_adc_remove_devices);
358 regulator_disable(info->vdd);
359 clk_disable_unprepare(info->clk);
360 err_iio_dev:
361 iio_device_unregister(indio_dev);
362 err_irq:
363 free_irq(info->irq, info);
364 return ret;
367 static int exynos_adc_remove(struct platform_device *pdev)
369 struct iio_dev *indio_dev = platform_get_drvdata(pdev);
370 struct exynos_adc *info = iio_priv(indio_dev);
372 device_for_each_child(&pdev->dev, NULL,
373 exynos_adc_remove_devices);
374 regulator_disable(info->vdd);
375 clk_disable_unprepare(info->clk);
376 writel(0, info->enable_reg);
377 iio_device_unregister(indio_dev);
378 free_irq(info->irq, info);
380 return 0;
383 #ifdef CONFIG_PM_SLEEP
384 static int exynos_adc_suspend(struct device *dev)
386 struct iio_dev *indio_dev = dev_get_drvdata(dev);
387 struct exynos_adc *info = iio_priv(indio_dev);
388 u32 con;
390 if (info->version == ADC_V2) {
391 con = readl(ADC_V2_CON1(info->regs));
392 con &= ~ADC_CON_EN_START;
393 writel(con, ADC_V2_CON1(info->regs));
394 } else {
395 con = readl(ADC_V1_CON(info->regs));
396 con |= ADC_V1_CON_STANDBY;
397 writel(con, ADC_V1_CON(info->regs));
400 clk_disable_unprepare(info->clk);
401 writel(0, info->enable_reg);
402 regulator_disable(info->vdd);
404 return 0;
407 static int exynos_adc_resume(struct device *dev)
409 struct iio_dev *indio_dev = dev_get_drvdata(dev);
410 struct exynos_adc *info = iio_priv(indio_dev);
411 int ret;
413 ret = regulator_enable(info->vdd);
414 if (ret)
415 return ret;
417 writel(1, info->enable_reg);
418 clk_prepare_enable(info->clk);
420 exynos_adc_hw_init(info);
422 return 0;
424 #endif
426 static SIMPLE_DEV_PM_OPS(exynos_adc_pm_ops,
427 exynos_adc_suspend,
428 exynos_adc_resume);
430 static struct platform_driver exynos_adc_driver = {
431 .probe = exynos_adc_probe,
432 .remove = exynos_adc_remove,
433 .driver = {
434 .name = "exynos-adc",
435 .owner = THIS_MODULE,
436 .of_match_table = exynos_adc_match,
437 .pm = &exynos_adc_pm_ops,
441 module_platform_driver(exynos_adc_driver);
443 MODULE_AUTHOR("Naveen Krishna Chatradhi <ch.naveen@samsung.com>");
444 MODULE_DESCRIPTION("Samsung EXYNOS5 ADC driver");
445 MODULE_LICENSE("GPL v2");